]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCv3.h
bug fix and small changed in the macros
[u/mrichter/AliRoot.git] / ZDC / AliZDCv3.h
CommitLineData
8d433671 1#ifndef ALIZDCV3_H
2#define ALIZDCV3_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6////////////////////////////////////////////////
7// Manager and hits classes for set: ZDC //
8////////////////////////////////////////////////
9
10#include "AliZDC.h"
11
12//____________________________________________________________________________
13class AliZDCv3 : public AliZDC {
14
15public:
16 AliZDCv3();
17 AliZDCv3(const char *name, const char *title);
18 virtual ~AliZDCv3() {}
19 virtual void CreateGeometry();
20 virtual void CreateBeamLine();
21 virtual void CreateZDC();
22 virtual void CreateMaterials();
23 virtual Int_t IsVersion() const {return 1;}
24 virtual void DrawModule() const;
f853b9aa 25 virtual void AddAlignableVolumes() const;
8d433671 26 virtual void Init();
27 virtual void InitTables();
28 virtual void StepManager();
29
925008a9 30 void SetVCollAperture(Float_t aperture)
31 {if(aperture<3.5) fVCollAperture = aperture;
30f5a47b 32 else printf("\n\n AliZDCv3: WARNING! TCTVB aperture set to max.: 3.5 cm\n\n");}
33 void SetVCollCentre(Float_t centre) {fVCollCentreY = centre;}
34 void SetLumiLength(Float_t length) {fLumiLength = length;}
925008a9 35
796c8b58 36 void SetYZNC(Float_t yZNC) {fPosZNC[1] = yZNC;}
25e05e8a 37 void SetYZNA(Float_t yZNA) {fPosZNA[1] = yZNA;}
796c8b58 38
39 void SetYZPC(Float_t yZPC) {fPosZPC[1] = yZPC;}
25e05e8a 40 void SetYZPA(Float_t yZPA) {fPosZPA[1] = yZPA;}
796c8b58 41
8d433671 42
43protected:
44
45 // Sensitive media
46 Int_t fMedSensF1; // Sensitive medium F1
47 Int_t fMedSensF2; // Sensitive medium F2
48 Int_t fMedSensZP; // Sensitive medium for ZP
49 Int_t fMedSensZN; // Sensitive medium for ZN
50 Int_t fMedSensZEM; // Sensitive medium for EM ZDC
51 Int_t fMedSensGR; // Other sensitive medium
52 Int_t fMedSensPI; // Beam pipe and magnet coils
f853b9aa 53 Int_t fMedSensTDI; // Cu materials along beam pipe
30f5a47b 54 Int_t fMedSensVColl; // W jaws of vertical collimators
55 Int_t fMedSensLumi; // luminometer medium
8d433671 56
57 // Parameters for light tables
58 Int_t fNalfan; // Number of Alfa (neutrons)
59 Int_t fNalfap; // Number of Alfa (protons)
60 Int_t fNben; // Number of beta (neutrons)
61 Int_t fNbep; // Number of beta (protons)
62 Float_t fTablen[4][90][18]; // Neutrons light table
63 Float_t fTablep[4][90][28]; // Protons light table
64
65 // Parameters for hadronic calorimeters geometry
66 // NB -> parameters used in CreateZDC() and in StepManager()
67 // (other parameters are defined in CreateZDC())
68 Float_t fDimZN[3]; // Dimensions of proton detector
69 Float_t fDimZP[3]; // Dimensions of proton detector
f853b9aa 70 Float_t fPosZNC[3]; // Position of neutron detector side C
71 Float_t fPosZNA[3]; // Position of neutron detector side A
72 Float_t fPosZPC[3]; // Position of proton detector side C
73 Float_t fPosZPA[3]; // Position of proton detector side A
8d433671 74 Float_t fFibZN[3]; // Fibers for neutron detector
75 Float_t fFibZP[3]; // Fibers for proton detector
76
77 // Parameters for EM calorimeter geometry
78 // NB -> parameters used in CreateZDC() and in StepManager()
79 // (other parameters are defined in CreateZDC())
80 Float_t fPosZEM[3]; // Position of EM detector
81 Float_t fZEMLength; // ZEM length
82
f853b9aa 83 // Parameters for proton accepancy studies
30f5a47b 84 Int_t fpLostITC, fpLostD1C, fpcVCollC, fpDetectedC, fnDetectedC; // Side C
85 Int_t fpLostITA, fpLostD1A, fpLostTDI, fpcVCollA, fpDetectedA, fnDetectedA; // Side A
8d433671 86
925008a9 87 // Parameters to describe vertical collimator aperture
88 Float_t fVCollAperture; // Semi-aperture of TCTVB jaws
89 Float_t fVCollCentreY; // Centre of TCTVB jaw apertures
f853b9aa 90
30f5a47b 91 Float_t fLumiLength; // Luminometer length
92
93 ClassDef(AliZDCv3,6) // Zero Degree Calorimeter version 1
8d433671 94};
95
96#endif