]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCv3.h
Index corrected in AliZDCReconstructor.cxx + getting rid of unused calib object in...
[u/mrichter/AliRoot.git] / ZDC / AliZDCv3.h
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 //____________________________________________________________________________ 
13 class AliZDCv3 : public AliZDC {
14
15 public:
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;
25   virtual void  AddAlignableVolumes() const;
26   virtual void  Init();
27   virtual void  InitTables();
28   virtual void  StepManager();
29   
30   void SetVCollAperture(Float_t aperture)
31         {if(aperture<3.5) fVCollAperture = aperture; 
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;}
35   
36   void SetYZNC(Float_t yZNC) {fPosZNC[1] = yZNC;}
37   void SetYZNA(Float_t yZNA) {fPosZNC[1] = yZNA;}
38   
39   void SetYZPC(Float_t yZPC) {fPosZPC[1] = yZPC;}
40   void SetYZPA(Float_t yZPA) {fPosZPC[1] = yZPA;}
41   
42  
43 protected:
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
53   Int_t   fMedSensTDI;        // Cu materials along beam pipe
54   Int_t   fMedSensVColl;      // W jaws of vertical collimators
55   Int_t   fMedSensLumi;       // luminometer medium
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
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
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   
83   // Parameters for proton accepancy studies
84   Int_t fpLostITC, fpLostD1C, fpcVCollC, fpDetectedC, fnDetectedC; // Side C
85   Int_t fpLostITA, fpLostD1A, fpLostTDI, fpcVCollA, fpDetectedA, fnDetectedA; // Side A
86   
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
90   
91   Float_t fLumiLength;  // Luminometer length
92   
93   ClassDef(AliZDCv3,6)  // Zero Degree Calorimeter version 1
94 }; 
95  
96 #endif