]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixing bug in enum for filter bits
authormfloris <mfloris@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 3 Nov 2011 13:15:16 +0000 (13:15 +0000)
committermfloris <mfloris@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 3 Nov 2011 13:15:16 +0000 (13:15 +0000)
STEER/AOD/AliAODTrack.h

index 4499d4c26f0427b0f9994c059c52711c48f08fc0..600a25be68703d3745206724cc8266f3aa6c675a 100644 (file)
@@ -42,14 +42,14 @@ class AliAODTrack : public AliVTrack {
 
 
   enum AODTrkFilterBits_t {
-    kTrkTPCOnly = BIT(1), // Standard TPC only tracks
-    kTrkITSsa   = BIT(2), // ITS standalone
-    kTrkITSConstrained = BIT(3), // Pixel OR necessary for the electrons
-    kTrkElectronsPID = BIT(4),    // PID for the electrons
-    kTrkGlobalNoDCA = BIT(5), // standard cuts with very loose DCA
-    kTrkGlobal = BIT(6),  // standard cuts with tight DCA cut
-    kTrkGlobalSDD = BIT(7), // standard cuts with tight DCA but with requiring the first SDD cluster instead of an SPD cluster tracks selected by this cut are exclusive to those selected by the previous cut
-    kTrkTPCOnlyConstrained = BIT(8) // TPC only tracks: TPConly information constrained to SPD vertex in the filter below
+    kTrkTPCOnly            = BIT(0), // Standard TPC only tracks
+    kTrkITSsa              = BIT(1), // ITS standalone
+    kTrkITSConstrained     = BIT(2), // Pixel OR necessary for the electrons
+    kTrkElectronsPID       = BIT(3),    // PID for the electrons
+    kTrkGlobalNoDCA        = BIT(4), // standard cuts with very loose DCA
+    kTrkGlobal             = BIT(5),  // standard cuts with tight DCA cut
+    kTrkGlobalSDD          = BIT(6), // standard cuts with tight DCA but with requiring the first SDD cluster instead of an SPD cluster tracks selected by this cut are exclusive to those selected by the previous cut
+    kTrkTPCOnlyConstrained = BIT(7) // TPC only tracks: TPConly information constrained to SPD vertex in the filter below
   };