]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSPID.h
Adding reverse engineering tool
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPID.h
1 #ifndef ALIPHOSPID_H
2 #define ALIPHOSPID_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5                             
6 /* $Id$ */
7
8 //_________________________________________________________________________
9 //  Algorithm class for the identification of particles detected in PHOS        
10 //  base  class                             
11 //                  
12 //*-- Author: Yves Schutz (SUBATECH)
13
14 // --- ROOT system ---
15
16 #include "TObject.h" 
17 #include "TClonesArray.h"
18
19 // --- Standard library ---
20
21 // --- AliRoot header files ---
22
23 #include "AliPHOSTrackSegment.h"
24 #include "AliPHOSRecParticle.h"
25
26
27
28 class AliPHOSPID : public TObject {
29
30 public:
31
32   AliPHOSPID() ;          // ctor            
33   virtual ~AliPHOSPID() ; // dtor
34
35   virtual void MakeParticles(AliPHOSTrackSegment::TrackSegmentsList * trsl, 
36                              AliPHOSRecParticle::RecParticlesList * rpl) {} ; 
37   virtual void SetShowerProfileCuts(Float_t, Float_t, Float_t, Float_t) {} ; 
38   virtual void SetDispersionCutOff(Float_t ) {}    
39
40   ClassDef(AliPHOSPID,1)  // Particle Identifier algorithm (base class)
41
42 } ;
43
44 #endif // ALIPHOSPID_H