]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding status code to enum for embedded tracks
authorkleinb <kleinb@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 17 Jan 2011 19:46:32 +0000 (19:46 +0000)
committerkleinb <kleinb@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 17 Jan 2011 19:46:32 +0000 (19:46 +0000)
STEER/AliESDtrack.h

index 9176a522756b2491586127639cb616972b1bb7eb..42a27988f9d8c2fdaf07c30b504c6827aab25d0b 100644 (file)
@@ -57,8 +57,9 @@ public:
     kTIME=0x80000000,
     kGlobalMerge=0x08000000,
     kITSpureSA=0x10000000,
-    kMultInV0=0x2000000,    //BIT(25): assumed to be belong to V0 in multiplicity estimates
-    kMultSec=0x4000000     //BIT(26): assumed to be secondary (due to the DCA) in multiplicity estimates
+    kMultInV0 =0x2000000,    //BIT(25): assumed to be belong to V0 in multiplicity estimates
+    kMultSec  =0x4000000,     //BIT(26): assumed to be secondary (due to the DCA) in multiplicity estimates
+    kEmbedded =0x8000000     // BIT(27), 1<<27: Is a track that has been embedded into the event      
   }; 
   enum {
     kTRDnPlanes = 6,
@@ -504,7 +505,7 @@ protected:
  private:
 
   AliESDtrack & operator=(const AliESDtrack & );
-  ClassDef(AliESDtrack,58)  //ESDtrack 
+  ClassDef(AliESDtrack,59)  //ESDtrack 
 };