]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALJetFinderOutput.h
Changed tower number
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALJetFinderOutput.h
1 #ifndef ALIEMCALJETFINDEROUTPUT_H
2 #define ALIEMCALJETFINDEROUTPUT_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  *  *  * See cxx source for full Copyright notice     */
6
7 /* $Id$ */
8
9 //_________________________________________________________________________
10 //  Output object for jetfinder
11 //
12 //*-- Author:   Renan Cabrera (LBL)
13 //              Mark Horner (LBL/UCT)
14 //
15
16
17 #include "TObject.h"
18 #include "TParticle.h"
19 #include "AliEMCALParton.h"
20 #include "AliEMCALJet.h"
21 #include "AliEMCALJetFinderTypes.h"
22
23 class AliEMCALJetFinderOutput : public TObject
24 {
25                 
26         public:
27                 AliEMCALJetFinderOutput();
28                 ~AliEMCALJetFinderOutput();
29                 void Reset(AliEMCALJetFinderResetType_t resettype);
30                 void AddJet(AliEMCALJet *jet); 
31                 void AddParton(AliEMCALParton *parton);
32                 void AddParticle(TParticle *particle);
33                 void SetDebug(Int_t debug){fDebug = debug;}
34                 AliEMCALJet* GetJet(Int_t jetID);
35                 Int_t GetNJets() const {return fNJets;}
36                 AliEMCALParton* GetParton(Int_t partonID);
37                 Int_t GetNPartons() const {return fNPartons;}
38                 TParticle* GetParticle(Int_t particleID);
39                 Int_t GetNParticles() const {return fNParticles;}
40
41         private:
42                 void InitArrays();
43                 AliEMCALJet     fJetsArray[10];         // [10] Array of jet objects
44                 AliEMCALParton  fPartonsArray[4];       // [4] Array of parton objects
45                 Int_t           fNPartons;              // Number of Partons actually stored
46                 Int_t           fNJets;                 // Number of jets actually stored
47                 TParticle   fParticlesArray[2000];      // [2000] Array of particles
48                 Int_t           fNParticles;            // Number of particles actually stored
49                 Int_t           fNMaxJets;              // Maximum number of jets 
50                 Int_t           fNMaxParticles;         // Maximum number of primary particles
51                 Int_t           fNMaxPartons;           // Maximum number of primary particles
52                 Int_t           fDebug;                 // Debug level
53                 Bool_t          fInitialised;           // stores whether or not the arrays have been initialised
54                 
55         ClassDef(AliEMCALJetFinderOutput,3)
56 };
57 #endif