]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/PartCorrBase/AliCaloTrackAODReader.h
Access to the file analyzed available now in analysis classes through the reader...
[u/mrichter/AliRoot.git] / PWG4 / PartCorrBase / AliCaloTrackAODReader.h
CommitLineData
1c5acb87 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//
11//
12// -- Author: Gustavo Conesa (INFN-LNF)
13
14// --- ROOT system ---
15
16// --- AliRoot system ---
17#include "AliCaloTrackReader.h"
18
19class AliCaloTrackAODReader : public AliCaloTrackReader {
20
21public:
22
477d6cee 23 AliCaloTrackAODReader() ; // ctor
24 AliCaloTrackAODReader(const AliCaloTrackAODReader & g) ; // cpy ctor
25 //AliCaloTrackAODReader & operator = (const AliCaloTrackAODReader & g) ;//cpy assignment
26 virtual ~AliCaloTrackAODReader() {;} //virtual dtor
27
28 void FillInputCTS() ;
29 void FillInputEMCAL() ;
30 void FillInputPHOS() ;
31 void FillInputEMCALCells() ;
32 void FillInputPHOSCells() ;
33
34 void GetVertex(Double_t v[3]) const ;
35 void SetInputOutputMCEvent(AliVEvent* esd, AliAODEvent* aod, AliMCEvent* mc) ;
36
37
38 ClassDef(AliCaloTrackAODReader,1)
39 } ;
1c5acb87 40
41
42#endif //ALICALOTRACKAODREADER_H
43
44
45