]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveHLT/AliEveEventBufferHomer.h
Coverity
[u/mrichter/AliRoot.git] / EVE / EveHLT / AliEveEventBufferHomer.h
1 //-*- Mode: C++ -*-
2
3 // $Id$
4
5
6 /* This file is property of and copyright by the ALICE HLT Project        * 
7  * ALICE Experiment at CERN, All rights reserved.                         *
8  * See cxx source for full Copyright notice     
9  */
10
11 /** @file   AliEveEventBufferHomer.h
12     @author Svein Lindal
13     @date
14     @brief  Manager for HOMER in aliroot
15 */
16
17 #define BUFFERSIZE 15
18
19
20 #ifndef ALIEVEEVENTBUFFERHOMER_H
21 #define ALIEVEEVENTBUFFERHOMER_H
22
23 class AliEveHOMERManager;
24 #include "Rtypes.h"
25 #include "AliEveEventBuffer.h"
26
27 class TFile;
28 class TTree;
29 class AliESDEvent;
30 class TString;
31
32 class AliEveEventBufferHomer : public AliEveEventBuffer {
33
34 public:
35   
36   /** default constructor */
37   AliEveEventBufferHomer();
38   /** destructor */
39   virtual ~AliEveEventBufferHomer();
40
41   void ConnectToSource();
42   
43   void Initialize();
44
45   AliEveHOMERManager * GetHomerManager() const { return fHomer;}
46
47   TList * GetASyncEvent() { return fAsyncList;}
48
49   void WriteToFile(Int_t runnumber);
50
51
52 private:
53
54
55   /** copy constructor prohibited */
56   AliEveEventBufferHomer(const AliEveEventBufferHomer&);
57
58   /** assignment operator prohibited */
59   AliEveEventBufferHomer& operator=(const AliEveEventBufferHomer&);
60
61   ///Inherited from AliEveEventBuffer
62   TObject * GetEventFromSource();
63   
64   ULong64_t GetEventIdFromSource();
65
66
67   ///Inherited form AliEveEventBuffer
68   void AddToBuffer(TObject * event);
69   AliEveHOMERManager * fHomer;
70   Int_t fEventNo;
71   TList * fAsyncList;
72
73
74
75   ClassDef(AliEveEventBufferHomer, 0); 
76 };
77
78 #endif