X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FAliReconstruction.h;h=507c754300f239f968d0cf1aa3e9acba77fcd130;hb=d988bfb0b84da33dcc15fd8f1f4685981ea06489;hp=3ac0721fdd9bef52b7719926d1b6181eed425fab;hpb=a0ef2c6430de76c56b765802b36e9e3bc26c396d;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/AliReconstruction.h b/STEER/AliReconstruction.h index 3ac0721fdd9..507c754300f 100644 --- a/STEER/AliReconstruction.h +++ b/STEER/AliReconstruction.h @@ -166,6 +166,10 @@ public: protected: virtual Bool_t ProcessEvent(void* event); void InitRun(const char* input); + // Functions needed to select events for which we store the ESD friends + Bool_t IsHighPt() const; + Bool_t IsCosmicOrCalibSpecie() const; + void WriteESDfriend(); private: AliReconstruction(const AliReconstruction& rec); @@ -324,7 +328,14 @@ private: TTree* fChain; //! The raw-data chain in case of AliRawReaderChain - ClassDef(AliReconstruction, 38) // class for running the reconstruction + // Counters used in WriteESDfriend() + Int_t fNall; //! Number of reconstructed events + Int_t fNspecie; //! Number of events, selected by IsCosmicOrCalibSpecie + Int_t fSspecie; //! Number of events, sampled from fNspecie + Int_t fNhighPt; //! Number of events, selected by IsHighPt + Int_t fShighPt; //! Number of events, sampled from fNhighPt + + ClassDef(AliReconstruction, 39) // class for running the reconstruction }; #endif