#ifndef ALIPHOSV0HITS_H #define ALIPHOSV0HITS_H /* Copyright(c) 1998-1999-2000, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ //_________________________________________________________________________ // Version of AliPHOSv0 which allows for keeping all hits in TreeH // This version is NOT recommended for Reconstruction analysis // //*-- Author: Gines MARTINEZ (SUBATECH) // --- ROOT system --- #include "TClonesArray.h" // --- AliRoot header files --- #include "AliPHOSv0.h" #include "AliPHOSReconstructioner.h" class AliPHOSv0hits : public AliPHOSv0 { public: AliPHOSv0hits(void) ; AliPHOSv0hits(const char *name, const char *title="") ; virtual ~AliPHOSv0hits(void) ; virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits ) ; // adds a hit to the hit tree (any pre=digitalization is done here (so large root file !!) void FinishEvent(void) ; // makes the digits from the hits virtual void StepManager(void) ; // StepManager to keep current tack number in the hit protected: ClassDef(AliPHOSv0hits,1) // Class AliPHOSv0 which allows to write ond disk al the information of the hits. }; #endif // AliPHOSV0HITS_H