]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/global/AliFlatESDEvent.h
2a9035a806acc57f2e2b274552951b50766249ab
[u/mrichter/AliRoot.git] / HLT / global / AliFlatESDEvent.h
1 #ifndef ALIFLATESDEVENT_H
2 #define ALIFLATESDEVENT_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               *
6  * Primary Authors : Sergey Gorbunov, Jochen Thaeder, Chiara Zampolli     */
7
8 /*
9  * See implementation file for documentation
10  */
11
12 #include "Rtypes.h"
13 #include "AliFlatESDTrack.h"
14 #include "AliFlatESDV0.h"
15 #include "AliVVevent.h"
16 #include "AliFlatESDVertex.h"
17
18 class AliESDEvent;
19 class AliESDVertex;
20 class AliESDV0;
21 class TString;
22 class AliVVv0;
23
24 class AliFlatESDEvent: public AliVVevent {
25 //class AliFlatESDEvent {
26  public:
27   // --------------------------------------------------------------------------------
28   // -- Constructor / Destructors
29   AliFlatESDEvent();   
30
31 // empty constructor, to be called by placement new,
32 // when accessing information after reinterpret_cast
33 // so that vtable is generated, but values are not overwritten
34         AliFlatESDEvent(Bool_t){}
35
36   AliFlatESDEvent(AliESDEvent *esd);   
37   AliFlatESDEvent(AliESDEvent *esd, Bool_t useESDFriends);   
38   ~AliFlatESDEvent();  
39
40   // --------------------------------------------------------------------------------
41   // -- Fill / Set methods
42   void Reset();
43
44   Int_t Fill( const AliESDEvent *esd, const Bool_t useESDFriends = kTRUE, const Bool_t fillV0s=kTRUE );
45
46   void FillPrimaryVertices( const AliESDVertex *vertexSPD,
47                             const AliESDVertex *vertexTracks );
48
49  
50   AliFlatESDTrack *GetNextTrackPointer(){ 
51                 return  reinterpret_cast<AliFlatESDTrack*> (fContent + fSize);
52   }
53
54   void StoreLastTrack(){ 
55     fNTracks++;
56     fSize+= GetNextTrackPointer()->GetSize();
57     fV0Pointer = fSize;
58   }
59
60   AliFlatESDV0 *GetNextV0Pointer(){
61         return reinterpret_cast<AliFlatESDV0*> (fContent + fSize);
62 }
63
64   void StoreLastV0(){ 
65     fNV0s++;
66     fSize+= sizeof(AliFlatESDV0);
67   }
68
69   // --------------------------------------------------------------------------------
70   // -- Getter methods
71
72    const AliFlatESDVertex* GetPrimaryVertexSPD() const {
73     if (fPrimaryVertexMask & 0x1){
74                  return reinterpret_cast< AliFlatESDVertex*> (const_cast<Byte_t*>(fContent));
75         }
76         else return NULL;
77   } 
78
79   const  AliFlatESDVertex* GetPrimaryVertexTracks() const { 
80     if (fPrimaryVertexMask & 0x2){
81                  return reinterpret_cast< AliFlatESDVertex*> (const_cast<Byte_t*>(fContent)) + CountBits(fPrimaryVertexMask, 0x1);
82         }
83         else return NULL;
84    } 
85
86   Int_t GetNumberOfV0s() const {return fNV0s;}
87
88   Int_t GetNumberOfTracks() const {return fNTracks;}
89   
90   AliFlatESDTrack *GetTracks() {
91         return reinterpret_cast<AliFlatESDTrack*> (fContent + fTracksPointer);
92 }
93
94   const AliVVvertex* GetPrimaryVertex() const {return NULL;}
95   const AliVVvertex* GetPrimaryVertexTPC() const {return NULL;}
96   AliFlatESDTrack* GetTrack(Int_t /*i*/) const {return NULL;}
97   AliVVkink* GetKink(Int_t /*i*/) const {return NULL;}
98   AliFlatESDV0* GetV0(Int_t /*i*/) const {return NULL;}
99   Int_t GetNumberOfKinks() const {return 0;}
100   Int_t GetEventNumberInFile() const {return -1;}
101   const AliMultiplicity* GetMultiplicity() const {return NULL;} //by default SPDmult
102   Int_t GetRunNumber() const {return -1;}
103   TString GetFiredTriggerClasses() const {TString string; return string;}
104   TObject* FindListObject(const char* /*name*/) const {return NULL;}
105   ULong64_t GetTriggerMask() const {return 0;}
106   Double_t GetMagneticField() const {return 0;}
107   UInt_t GetTimeStamp() const { return 0;}
108   UInt_t GetEventSpecie() const { return 0;}
109
110   
111   // --------------------------------------------------------------------------------
112   // -- Size methods
113   static ULong64_t EstimateSize(AliESDEvent*esd, Bool_t useESDFriends = kTRUE, Bool_t fillV0s=kTRUE);
114          ULong64_t GetSize()    {return fContent - reinterpret_cast<Byte_t*>(this) + fSize;}
115
116
117
118
119  private:
120   AliFlatESDEvent(const AliFlatESDEvent&);
121   AliFlatESDEvent& operator=(const AliFlatESDEvent&);
122
123   void FillPrimaryVertex(const AliESDVertex *v, Byte_t flag);
124   Int_t FillNextTrack( const AliESDtrack* esdTrack,  AliESDfriendTrack* friendTrack);
125   Int_t FillNextV0( const AliESDV0 *v0);
126   UInt_t CountBits(Byte_t field, UInt_t mask) const;
127
128   // --------------------------------------------------------------------------------
129   // -- Fixed size member objects
130   //    -> Try to align in memory
131
132   Byte_t   fPrimaryVertexMask;            // Bit mask specfifying which primary vertices are present
133   Int_t    fNTracks;                   // Number of tracks in vector
134   ULong64_t fTracksPointer;            // position of the first track in fContent
135   Int_t fNV0s; // Number of v0's
136   ULong64_t fV0Pointer;            // position of the first V0 in fContent
137
138
139   ULong64_t fSize;                      // Size of this object
140   
141   // --------------------------------------------------------------------------------
142   // -- Variable Size Object
143   Byte_t fContent[1];                  // Variale size object, which contains all data
144   
145 };
146 #endif