]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALJetFinderInput.h
Removing warning
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALJetFinderInput.h
index 41c9294b4552be7b749116200ad021fb9c0df732..f22f57efeacbbe9a139a5795a525a9fecf869e8a 100755 (executable)
@@ -16,7 +16,6 @@
 
 #include "TObject.h"
 #include "TParticle.h"
-#include "TClonesArray.h"
 #include "AliEMCALParton.h"
 #include "AliEMCALDigit.h"
 #include "AliEMCALJetFinderTypes.h"
@@ -33,13 +32,13 @@ 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();
@@ -58,6 +57,6 @@ class AliEMCALJetFinderInput : public TObject
                Int_t           fDebug;         // This is the debug value 
                Bool_t          fInitialised;   // Stores whether or not the arrays have been initialised 
                
-       ClassDef(AliEMCALJetFinderInput,2)
+       ClassDef(AliEMCALJetFinderInput,3)
 };
 #endif