]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSv0_hits.h
fPrimary become array[5]
[u/mrichter/AliRoot.git] / PHOS / AliPHOSv0_hits.h
1 #ifndef ALIPHOSV0_HITS_H
2 #define ALIPHOSV0_HITS_H
3 /* Copyright(c) 1998-1999-2000, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5 //_________________________________________________________________________
6 // Version of AliPHOSv0 which allows for keeping all hits in TreeH
7 //  This version is NOT recommended for Reconstruction analysis
8 //                  
9 //*-- Author: Gines MARTINEZ (SUBATECH)
10
11 // --- ROOT system ---
12 #include "TClonesArray.h"
13
14 // --- AliRoot header files ---
15 #include "AliPHOSv0.h"
16 #include "AliPHOSReconstructioner.h"
17
18 class AliPHOSv0_hits : public AliPHOSv0 {
19
20 public:
21
22   AliPHOSv0_hits(void) ;
23   AliPHOSv0_hits(const char *name, const char *title="") ;
24   virtual ~AliPHOSv0_hits(void) ;
25
26   virtual void   AddHit( Int_t primary, Int_t id, Float_t *hits ) ; 
27 // adds a hit to the hit tree (any pre=digitalization is done here (so large root file !!) 
28   void           FinishEvent(void) ;          // makes the digits from the hits 
29 protected:
30
31   ClassDef(AliPHOSv0_hits,1)  // Class AliPHOSv0 which allows to write ond disk al the information of the hits. 
32
33 };
34
35 #endif // AliPHOSV0_HITS_H