]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSv1.h
removed unnecessary includes
[u/mrichter/AliRoot.git] / PHOS / AliPHOSv1.h
CommitLineData
7587f5a5 1#ifndef ALIPHOSV1_H
2#define ALIPHOSV1_H
5f20d3fb 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
7587f5a5 4 * See cxx source for full Copyright notice */
5f20d3fb 5
b2a60966 6//_________________________________________________________________________
5f20d3fb 7// Implementation version v1 of PHOS Manager class
8// Layout EMC + PPSD has name GPS2
a3dfe79c 9// Layout EMC + CPV has name IHEP
10//*--
5f20d3fb 11//*-- Author: Yves Schutz (SUBATECH)
7587f5a5 12
13// --- ROOT system ---
bea63bea 14#include "TClonesArray.h"
7587f5a5 15
16// --- AliRoot header files ---
17#include "AliPHOSv0.h"
5f20d3fb 18#include "AliPHOSGeometry.h"
bea63bea 19#include "AliPHOSReconstructioner.h"
5f20d3fb 20#include "AliPHOSTrackSegmentMaker.h"
21#include "AliPHOSPID.h"
3d402178 22#include "AliPHOSCPVModule.h"
23#include "AliPHOSCPVHit.h"
24#include "AliPHOSCPVDigit.h"
7587f5a5 25
26class AliPHOSv1 : public AliPHOSv0 {
27
28public:
29
bea63bea 30 AliPHOSv1(void) ;
7587f5a5 31 AliPHOSv1(const char *name, const char *title="") ;
5f20d3fb 32 AliPHOSv1(AliPHOSReconstructioner * Reconstructioner, const char *name, const char *title="") ;
33 AliPHOSv1(const AliPHOSv1 & phos) {
34 // cpy ctor: no implementation yet
35 // requested by the Coding Convention
36 assert(0==1) ;
37 }
bea63bea 38 virtual ~AliPHOSv1(void) ;
39
7eb9d12d 40 virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits, Int_t pid) ;
5f20d3fb 41 Int_t Digitize(Float_t Energy);
ed4205d8 42 virtual void Hit2Digit(Int_t event) ;
e04976bd 43 virtual Int_t IsVersion(void) const {
44 // Gives the version number
45 return 1 ;
46 }
5f20d3fb 47 virtual void MakeBranch(Option_t* opt) ;
5f20d3fb 48 void Reconstruction(AliPHOSReconstructioner * Reconstructioner) ;
49 void ResetClusters(){} ;
fa412d9b 50 virtual void ResetHits() ;
5f20d3fb 51 virtual void ResetReconstruction() ; // Reset reconstructed objects
0a6d52e3 52 void SetReconstructioner(AliPHOSReconstructioner& Reconstructioner) {
53 // sets the reconstructionner object to be used
54 fReconstructioner = &Reconstructioner ;
88bdfa12 55 }
5f20d3fb 56 void SetDigitThreshold(Float_t th) { fDigitThreshold = th ; }
57 virtual void SetTreeAddress();
0a6d52e3 58 virtual void StepManager(void) ;
59 virtual TString Version(void){
60 // returns the version number
61 return TString("v1") ;
62 }
5f20d3fb 63
64 AliPHOSv1 & operator = (const AliPHOSv1 & rvalue) {
a3dfe79c 65 // assignement operator requested by coding convention but not needed
5f20d3fb 66 assert(0==1) ;
67 return *this ;
68 }
bea63bea 69
ed4205d8 70 AliPHOSCPVModule &GetEMCModule(int n) { return *(AliPHOSCPVModule*)fEMCModules->operator[](n); }
3d402178 71 AliPHOSCPVModule &GetCPVModule(int n) { return *(AliPHOSCPVModule*)fCPVModules->operator[](n); }
ed4205d8 72
fa412d9b 73 void CPVDigitize (TLorentzVector p, Float_t *xy, Int_t moduleNumber, TClonesArray *digits) ;
74 Float_t CPVPadResponseFunction(Float_t qhit, Float_t zg, Float_t xg) ;
75 Double_t CPVCumulPadResponse(Double_t x, Double_t y) ;
76
bea63bea 77protected:
78
5f20d3fb 79 Float_t fDigitThreshold ; // Threshold for the digit registration
5f20d3fb 80 Float_t fPinElectronicNoise ; // Electronic Noise in the PIN
ed4205d8 81 AliPHOSReconstructioner * fReconstructioner ; // Reconstrutioner of the PHOS event: Clusterization and subtracking procedures
5f20d3fb 82 AliPHOSTrackSegmentMaker * fTrackSegmentMaker ; // Reconstructioner of the PHOS track segment: 2 x PPSD + 1 x EMC
ed4205d8 83 TClonesArray * fEMCModules; // Array of EMC modules
84 TClonesArray * fCPVModules; // Array of CPV modules for the IHEP's version of CPV
fa412d9b 85
5f20d3fb 86 ClassDef(AliPHOSv1,1) // Implementation of PHOS manager class for layout EMC+PPSD
7587f5a5 87
88};
89
90#endif // AliPHOSV1_H