@@ -59,10 +59,10 @@ namespace sbn::crt {
5959 static constexpr int NoLocation = -1 ;
6060
6161 geo::Point_t position; // /< Hit location [cm]
62- double PMTTimeDiff; // = NoTime; < CRT hit time minus PMT flash time [us] (instead maybe wanna set NoTime vars in
63- double time; // = NoTime; ///< CRT hit time [us]
64- int sys; // = NoLocation; ///< CRT subdetector the hit fell into.
65- int region; // = NoLocation; ///< Region the matched CRT hit fell into.
62+ double PMTTimeDiff = NoTime; // / < CRT hit time minus PMT flash time [us]
63+ double time = NoTime; // /< CRT hit time [us]
64+ int sys = NoLocation; // /< CRT subdetector the hit fell into.
65+ int region = NoLocation; // /< Region the matched CRT hit fell into.
6666 };
6767
6868 struct CRTPMTMatching {
@@ -83,18 +83,18 @@ namespace sbn::crt {
8383 static constexpr double NoWidth = -1.0 ;
8484
8585
86- int flashID; // = NoID; ///< ID of the optical flash.
87- double flashTime; // = NoTime; ///< Time of the optical flash w.r.t. the global trigger [us]
88- double flashGateTime; // = NoTime; ///< Time of the optical flash w.r.t. the beam gate opening [us]
89- double firstOpHitPeakTime; // = NoTime; ///< Time of the first optical hit peak time w.r.t. the global trigger [us]
90- double firstOpHitStartTime; // = NoTime; ///< Time of the first optical hit start time w.r.t. the global trigger [us]
91- bool flashInGate; // = false; ///< Flash within gate or not.
92- bool flashInBeam ; // = false; ///< Flash within the beam window of the gate or not.
93- double flashPE; // = -1.0; ///< Total reconstructed light in the flash [photoelectrons]
86+ int flashID = NoID; // /< ID of the optical flash.
87+ double flashTime = NoTime; // /< Time of the optical flash w.r.t. the global trigger [us]
88+ double flashGateTime = NoTime; // /< Time of the optical flash w.r.t. the beam gate opening [us]
89+ double firstOpHitPeakTime = NoTime; // /< Time of the first optical hit peak time w.r.t. the global trigger [us]
90+ double firstOpHitStartTime = NoTime; // /< Time of the first optical hit start time w.r.t. the global trigger [us]
91+ bool flashInGate = false ; // /< Flash within gate or not.
92+ bool flashInBeam = false ; // /< Flash within the beam window of the gate or not.
93+ double flashPE = -1.0 ; // /< Total reconstructed light in the flash [photoelectrons]
9494 geo::Point_t flashPosition; // /< Flash barycenter coordinates evaluated using ADCs as weights.
95- double flashYWidth; // = NoWidth; ///< Flash spread along Y.
96- double flashZWidth; // = NoWidth; ///< Flash spread along Z.
97- MatchType flashClassification; // = MatchType::noMatch; ///< Classification of the optical flash.
95+ double flashYWidth = NoWidth; // /< Flash spread along Y.
96+ double flashZWidth = NoWidth; // /< Flash spread along Z.
97+ MatchType flashClassification = MatchType::noMatch; // /< Classification of the optical flash.
9898 std::vector<MatchedCRT> matchedCRTHits; // /< Matched CRT Hits with the optical flash.
9999 unsigned int nTopCRTHitsBefore = NoCount; // /< Number of Top CRT Hits before the optical flash.
100100 unsigned int nTopCRTHitsAfter = NoCount; // /< Number of Top CRT Hits after the optical flash.
0 commit comments