You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initial TOF reconstruction and track matching code (#1486)
* Track matching
* Adding classes for TOF matching
* Taking the TPC track after the outwards propagation
* Propagate the TrackTPC corresponding to the track to match
* Getter and Setter of the value of the number of sigma to cut for the matching
* Use TPCITS track for TOF matching
* Load geometry for DPL processing
* TOF digitizer switch to vector of vectors for digits
* timestamp removed from TOF digits and other fixes (#6)
* Important changes in digitizer output and matching
- Digitizer output is now a vector of vectors (each "sub-vector" is per TOF readout frame)
- Matching now seems to work (but we still don't check the time)
* Tof rec (#8)
* move tof digitizer to vec of vecs also for MC labels
* ad TOF test MC generator
* git-clang-format - again
@@ -104,14 +130,15 @@ class Cluster : public o2::BaseCluster<float>
104
130
private:
105
131
friendclassboost::serialization::access;
106
132
107
-
floatmTimeRaw;// raw TOF time // CZ: in AliRoot it is a double
108
-
floatmTime;// calibrated TOF time // CZ: in AliRoot it is a double
133
+
doublemTimeRaw; // raw TOF time // CZ: in AliRoot it is a double
134
+
doublemTime; // calibrated TOF time // CZ: in AliRoot it is a double
109
135
floatmTot; // Time-Over-threshold // CZ: in AliRoot it is a double
110
136
intmL0L1Latency; // L0L1 latency // CZ: is it different per cluster? Checking one ESD file, it seems that it is always the same (see: /alice/data/2017/LHC17n/000280235/pass1/17000280235019.100/AliESDs.root)
111
137
intmDeltaBC; // DeltaBC --> can it be a char or short? // CZ: is it different per cluster? Checking one ESD file, it seems that it can vary (see: /alice/data/2017/LHC17n/000280235/pass1/17000280235019.100/AliESDs.root)
112
138
//float mZ; //! z-coordinate // CZ: to be verified if it is the same in the BaseCluster class
113
-
floatmR; //! radius
114
-
floatmPhi; //! phi coordinate
139
+
floatmR = RadiusOutOfRange; //! radius
140
+
floatmPhi = PhiOutOfRange; //! phi coordinate
141
+
intmSector = -1; //! sector number
115
142
intmContributingChannels; // index of the channels that contributed to the cluster; to be read like this:
116
143
// channel & 0x3FFFF -> first 18 bits to store the main channel
117
144
// channel & bit19 (0x40000) -> alsoUPLEFT
@@ -126,7 +153,7 @@ class Cluster : public o2::BaseCluster<float>
0 commit comments