]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/PartCorrBase/AliCaloTrackAODReader.h
EMCAL clusterizer: pas the MC label to the intermediate digits so that we can have...
[u/mrichter/AliRoot.git] / PWG4 / PartCorrBase / AliCaloTrackAODReader.h
1 #ifndef ALICALOTRACKAODREADER_H
2 #define ALICALOTRACKAODREADER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice     */
5 /* $Id: $ */
6
7 //_________________________________________________________________________
8 // Class for reading data (AODs) in order to do prompt gamma or other particle
9 // identification and correlations.
10 // This part is commented: Mixing analysis can be done, input AOD with events
11 // is opened in the AliCaloTrackReader::Init()
12 //
13 //
14 // -- Author: Gustavo Conesa (INFN-LNF)
15
16 #include "AliAnalysisTaskSE.h"
17
18 #include "AliAODEvent.h"
19 #include "AliCaloTrackReader.h" 
20
21 class AliCaloTrackAODReader : public AliCaloTrackReader {
22         
23 public: 
24         
25   AliCaloTrackAODReader() ; // ctor
26   virtual ~AliCaloTrackAODReader() {;} //virtual dtor
27   
28 private:
29   AliCaloTrackAODReader(const AliCaloTrackAODReader & ) ; // cpy ctor
30   AliCaloTrackAODReader & operator = (const AliCaloTrackAODReader & g) ;//cpy assignment
31    
32 public: 
33
34   AliCentrality* GetCentrality() const ;  
35   void SetInputOutputMCEvent(AliVEvent* esd, AliAODEvent* aod, AliMCEvent* mc) ; 
36   
37   AliVEvent* GetOriginalInputEvent() const { return fOrgInputEvent; }
38   
39 private:
40   
41   AliVEvent *fOrgInputEvent; //! Original input event, not from filtering
42   
43   ClassDef(AliCaloTrackAODReader,6)
44 } ;
45
46 #endif //ALICALOTRACKAODREADER_H
47
48
49