~christopher-hunt08/maus/maus_scifi_recon_devel

« back to all changes in this revision

Viewing changes to src/common_cpp/DataStructure/EMREvent.hh

  • Committer: Christopher Hunt
  • Date: 2015-12-14 08:48:38 UTC
  • mfrom: (697.47.179 cctag_corr)
  • Revision ID: christopher.hunt08@imperial.ac.uk-20151214084838-wjl32e152yx3ks1j
MAUS Merg Remerged

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    void SetEMRPlaneHitArray(EMRPlaneHitArray emrplanehitarray);
52
52
 
53
53
    /** Returns  */
54
 
    bool GetInitialTrigger() const;
55
 
 
56
 
    /** Sets  */
57
 
    void SetInitialTrigger(bool initial_trigger);
58
 
 
59
 
    /** Returns  */
60
54
    bool GetHasPrimary() const;
61
55
 
62
56
    /** Sets  */
93
87
    void SetTotalChargeMA(double total_charge_MA);
94
88
 
95
89
    /** Returns  */
96
 
    double GetChargeRatioMA() const;
97
 
 
98
 
    /** Sets  */
99
 
    void SetChargeRatioMA(double charge_MA_ratio);
100
 
 
101
 
    /** Returns  */
102
90
    double GetTotalChargeSA() const;
103
91
 
104
92
    /** Sets  */
105
93
    void SetTotalChargeSA(double total_charge_SA);
106
94
 
107
95
    /** Returns  */
 
96
    double GetChargeRatioMA() const;
 
97
 
 
98
    /** Sets  */
 
99
    void SetChargeRatioMA(double charge_ratio_MA);
 
100
 
 
101
    /** Returns  */
108
102
    double GetChargeRatioSA() const;
109
103
 
110
104
    /** Sets  */
111
 
    void SetChargeRatioSA(double charge_SA_ratio);
112
 
 
113
 
    /** Returns  */
114
 
    double GetPlaneDensity() const;
115
 
 
116
 
    /** Sets  */
117
 
    void SetPlaneDensity(double plane_density);
 
105
    void SetChargeRatioSA(double charge_ratio_SA);
 
106
 
 
107
    /** Returns  */
 
108
    double GetPlaneDensityMA() const;
 
109
 
 
110
    /** Sets  */
 
111
    void SetPlaneDensityMA(double plane_density_MA);
 
112
 
 
113
    /** Returns  */
 
114
    double GetPlaneDensitySA() const;
 
115
 
 
116
    /** Sets  */
 
117
    void SetPlaneDensitySA(double plane_density_SA);
118
118
 
119
119
    /** Returns  */
120
120
    double GetChi2() const;
125
125
  private:
126
126
    EMRPlaneHitArray _emrplanehitarray;
127
127
 
128
 
    bool _initial_trigger;
129
128
    bool _has_primary;
130
129
    double _range_primary;
131
130
    bool _has_secondary;
132
131
    double _range_secondary;
133
132
    double _secondary_to_primary_track_distance;
134
133
    double _total_charge_MA;
 
134
    double _total_charge_SA;
135
135
    double _charge_ratio_MA;
136
 
    double _total_charge_SA;
137
136
    double _charge_ratio_SA;
138
 
    double _plane_density;
 
137
    double _plane_density_MA;
 
138
    double _plane_density_SA;
139
139
    double _chi2;
140
140
 
141
141
    MAUS_VERSIONED_CLASS_DEF(EMREvent)