]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALJetFinderInput.h
First attempt to propagate global track to PHOS
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALJetFinderInput.h
index 7e36590abc650a57c25bf608e8c29a515fdad1e9..562f24bdd746b9b04bd22b3122241899bae9c8e2 100755 (executable)
@@ -33,31 +33,31 @@ class AliEMCALJetFinderInput : public TObject
                void AddParton(AliEMCALParton *parton);
                void AddParticle(TParticle *particle);
                AliEMCALDigit* GetDigit(Int_t digitID);
-               Int_t GetNDigits(){return fNDigits;}
+               Int_t GetNDigits() const {return fNDigits;}
                TParticle* GetTrack(Int_t trackID);
-               Int_t GetNTracks(){return fNTracks;}
+               Int_t GetNTracks() const {return fNTracks;}
                AliEMCALParton* GetParton(Int_t partonID);
-               Int_t GetNPartons(){return fNPartons;}
+               Int_t GetNPartons() const {return fNPartons;}
                TParticle* GetParticle(Int_t particleID);
-               Int_t GetNParticles(){return fNParticles;}
+               Int_t GetNParticles() const {return fNParticles;}
 
        private:
                void InitArrays();
-               TClonesArray*   fDigitsArray;   // [fNMaxDigits] This is the digits array for the EMCAL
+               TClonesArray*   fDigitsArray;   //-> This is the digits array for the EMCAL
                Int_t           fNDigits;       // This is the number of digits
                Int_t           fNMaxDigits;    // This is the max number of digits
-               TClonesArray*   fTracksArray;   // [fNMaxTracks] This is the track array 
+               TClonesArray*   fTracksArray;   //-> This is the track array 
                Int_t           fNTracks;       // This stores the number of tracks     
                Int_t           fNMaxTracks;    // This stores the maximum number of tracks
-               TClonesArray*   fPartonsArray;  // [fNMaxPartons] This is the partons array
+               TClonesArray*   fPartonsArray;  //->  This is the partons array
                Int_t           fNPartons;      // This stores the number of partons
                Int_t           fNMaxPartons;   // This stores the maximum number of partons
-               TClonesArray*   fParticlesArray;// [fNMaxParticles] This stores the particles   
+               TClonesArray*   fParticlesArray;//-> This stores the particles  
                Int_t           fNParticles;    // This stores the number of particles
                Int_t           fNMaxParticles; // This stroes the maximum number of particles
                Int_t           fDebug;         // This is the debug value 
                Bool_t          fInitialised;   // Stores whether or not the arrays have been initialised 
                
-       ClassDef(AliEMCALJetFinderInput,1)
+       ClassDef(AliEMCALJetFinderInput,4)
 };
 #endif