]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/AliCaloTrackAODReader.h
- added the pad status regarding the calibration and the saturation to the TObject...
[u/mrichter/AliRoot.git] / PWG4 / AliCaloTrackAODReader.h
CommitLineData
d92b41ad 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/* History of cvs commits:
8 *
9 * $Log$
10 *
11 */
12
13//_________________________________________________________________________
14// Class for reading data (AODs) in order to do prompt gamma or other particle
15// identification and correlations
16//
17//
18// -- Author: Gustavo Conesa (INFN-LNF)
19
20// --- ROOT system ---
21
22// --- AliRoot system ---
23#include "AliCaloTrackReader.h"
24
25class AliCaloTrackAODReader : public AliCaloTrackReader {
26
27 public:
28
29 AliCaloTrackAODReader() ; // ctor
30 AliCaloTrackAODReader(const AliCaloTrackAODReader & g) ; // cpy ctor
31 AliCaloTrackAODReader & operator = (const AliCaloTrackAODReader & g) ;//cpy assignment
32 virtual ~AliCaloTrackAODReader() {;} //virtual dtor
33
34 void FillInputCTS();
35 void FillInputEMCAL();
36 void FillInputPHOS();
37
38 void FillInputEMCALCells();
39 void FillInputPHOSCells();
40
41 void GetVertex(Double_t v[3]) ;
42
43 void SetInputEvent(TObject* esd, TObject* aod, TObject* mc) ;
44
45
46 ClassDef(AliCaloTrackAODReader,1)
47 } ;
48
49
50#endif //AliCaloTrackAODReader_H
51
52
53