~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/common_cpp/Recon/SciFi/PatternRecognition.hh

MAUS-v2.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
namespace MAUS {
54
54
 
 
55
/** @class PatternReconition
 
56
 *  @author A. Dobbs
 
57
 *  @brief Pattern Recognition associates tracker spacepoints to tracks
 
58
 *
 
59
 *  Pattern Recognition associates tracker spacepoints to tracks. Linear least squares fitting
 
60
 *  is used to determine which spacepoints come from the same parent track. Both straight and
 
61
 *  helical tracks may be searched for.
 
62
 */
55
63
class PatternRecognition {
56
64
  public:
57
65
 
58
 
    /** Macro to allow friendship with the gtests */
 
66
    /** Macros to allow friendship with the gtests */
59
67
    FRIEND_TEST(PatternRecognitionTest, test_constructor);
60
68
    FRIEND_TEST(PatternRecognitionTest, test_set_parameters_to_default);
61
69
    FRIEND_TEST(PatternRecognitionTest, test_setup_debug);
62
70
 
63
 
    /** @brief Default constructor. Initialise variables,
64
 
     *         using globals if available, otherwise local defaults 
 
71
    /** @brief Default constructor. Initialise variables, using globals if available,
 
72
               otherwise local defaults
65
73
     */
66
74
    PatternRecognition();
67
75