]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/PHOS-HTML/AliPHOSv0.h
initialize pointer data member to zero in the default ctor to avoid problems with...
[u/mrichter/AliRoot.git] / PHOS / PHOS-HTML / AliPHOSv0.h
CommitLineData
29c81279 1#ifndef ALIPHOSV0_H
2#define ALIPHOSV0_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//_________________________________________________________________________
7// Implementation version v0 of PHOS Manager class
8// Layout EMC + PPSD has name GPS2
9//
10//*-- Author: Yves Schutz (SUBATECH)
11
12// --- ROOT system ---
13#include "TClonesArray.h"
14
15// --- AliRoot header files ---
16#include "AliPHOS.h"
17#include "AliPHOSGeometry.h"
18#include "AliPHOSReconstructioner.h"
19#include "AliPHOSTrackSegmentMaker.h"
20#include "AliPHOSPID.h"
21
22class AliPHOSv0 : public AliPHOS {
23
24public:
25
26 AliPHOSv0(void) ;
27 AliPHOSv0(const char *name, const char *title="") ;
28 AliPHOSv0(AliPHOSReconstructioner * Reconstructioner, const char *name, const char *title="") ;
29 virtual ~AliPHOSv0(void) ;
30
31 virtual void AddHit( Int_t primary, Int_t id, Float_t *hits ) ; // adds a pre-digitilized hit to the hit tree
32 virtual void BuildGeometry(void) ; // creates the geometry for the ROOT display
33 void BuildGeometryforPHOS(void) ; // creates the PHOS geometry for the ROOT display
34 void BuildGeometryforPPSD(void) ; // creates the PPSD geometry for the ROOT display
35 virtual void CreateGeometry(void) ; // creates the geometry for GEANT
36 void CreateGeometryforPHOS(void) ; // creates the PHOS geometry for GEANT
37 void CreateGeometryforPPSD(void) ; // creates the PPSD geometry for GEANT
38 Int_t Digitize(Float_t Energy);
39 RecPointsList* EmcClusters() {return fEmcClusters;} // gets TClonesArray of cluster in the crystals
40 void FinishEvent(void) ; // makes the digits from the hits
41 virtual AliPHOSGeometry * GetGeometry() { return fGeom ; }
42 virtual void Init(void) ; // does nothing
43 Int_t IsVersion(void) const { return 0 ; }
44 void MakeBranch(Option_t* opt) ;
45 RecPointsList* PpsdClusters() { return fPpsdClusters ; } // gets TClonesArray of clusters in the PPSD
46 void Reconstruction(AliPHOSReconstructioner * Reconstructioner) ;
47 RecParticlesList * RecParticles() { return fRecParticles ; } // gets TClonesArray of reconstructed particles
48 void ResetClusters(){} ;
49 void SetReconstructioner(AliPHOSReconstructioner& Reconstructioner) {fReconstructioner = &Reconstructioner ;}
50 void SetDigitThreshold(Float_t th) { fDigitThreshold = th ; }
51 virtual void StepManager(void) ; // does the tracking through PHOS and a preliminary digitalization
52 TrackSegmentsList * TrackSegments(){return fTrackSegments ;}
53
54protected:
55
56 Float_t fDigitThreshold ; // Threshold for the digit registration
57 RecPointsList * fEmcClusters ; // The RecPoints (clusters) list in EMC
58 AliPHOSGeometry * fGeom ; // Geometry definition
59 Int_t fNTmpHits ; //! Used internally for digitalization
60 Float_t fPinElectronicNoise ; // Electronic Noise in the PIN
61 RecPointsList * fPpsdClusters ; // The RecPoints (clusters) list in PPSD
62 AliPHOSReconstructioner * fReconstructioner ; // Reconstrutioner of the PHOS event: Clusterization and subtracking procedures
63 TClonesArray * fTmpHits ; //! Used internally for digitalization
64 AliPHOSTrackSegmentMaker * fTrackSegmentMaker ; // Reconstructioner of the PHOS track segment: 2 x PPSD + 1 x EMC
65 TrackSegmentsList * fTrackSegments ; // The TrackSegment list in PHOS
66 RecParticlesList * fRecParticles ; // The reconstructed particles list in PHOS
67
68 ClassDef(AliPHOSv0,1) // Implementation of PHOS manager class for layout EMC+PPSD
69
70};
71
72#endif // AliPHOSV0_H