]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSPID.h
Test of the access to the MEVSIM module
[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 //  of identified particles                
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 #include "AliPHOSGeometry.h"
26
27
28
29 class AliPHOSPID : public TObject {
30
31 public:
32
33   AliPHOSPID() ;          // ctor            
34   virtual ~AliPHOSPID() ; // dtor
35
36   virtual void MakeParticles(AliPHOSTrackSegment::TrackSegmentsList * trsl, 
37                              AliPHOSRecParticle::RecParticlesList * rpl) {} ; 
38   virtual void Print(const char *){} ; 
39   virtual void SetShowerProfileCuts(Float_t, Float_t, Float_t, Float_t) {} ; 
40   virtual void SetDispersionCutOff(Float_t ) {} ;   
41   virtual void SetRelativeDistanceCut(Float_t ) {};
42
43  protected:
44   
45   AliPHOSGeometry      * fGeom ;           // pointer to PHOS geometry  
46
47
48
49   ClassDef(AliPHOSPID,1)  // Particle Identifier algorithm (base class)
50
51 } ;
52
53 #endif // ALIPHOSPID_H