]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALv1.h
removed iostream
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv1.h
1 #ifndef ALIEMCALV1_H
2 #define ALIEMCALV1_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 // Implementation version v1 of EMCAL Manager class 
10 //*--                  
11 //*-- Author: Sahal Yacoob (LBL / UCT) 
12 //*--  and  : Jennifer Klay (LBL)
13 //#include <assert.h>
14
15 // --- ROOT system ---
16 class TClonesArray;
17 class TLorentzVector;
18 class TFile;
19
20 // --- AliRoot header files ---
21 #include "AliEMCALv0.h"
22
23 class AliEMCALv1 : public AliEMCALv0 {
24   
25 public:
26
27   AliEMCALv1(void) ; 
28   AliEMCALv1(const char *name, const char *title="") ;
29   // cpy ctor: no implementation yet
30   // requested by the Coding Convention
31   AliEMCALv1(const AliEMCALv0 & emcal) {
32     Fatal("cpy ctor", "not implemented") ;  }
33   virtual ~AliEMCALv1(void) ;
34   virtual void  AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t iparent, Float_t ienergy,
35                         Int_t id, Float_t *hits, Float_t *p);
36   // Gives the version number 
37   virtual Int_t  IsVersion(void) const {return 1;}
38   virtual void StepManager(void) ;
39   virtual const TString Version(void)const {return TString("v0");}
40   // assignement operator requested by coding convention but not needed  
41   AliEMCALv1 & operator = (const AliEMCALv0 & rvalue){
42     Fatal("operator =", "not implemented") ;  
43     return *this;}
44  
45     
46 private:
47
48   Float_t fLightYieldMean ;         // Mean lightyield in a plastic layer per GeV (Poisson distribution)
49   Float_t fIntrinsicAPDEfficiency ; // Photo efficiency of the APD diode   
50   Float_t fLightYieldAttenuation ;  // Attenuation of the light through the light fiber
51   Float_t fRecalibrationFactor ;    // Recalibration factor
52   Float_t fAPDGain ;                // APD Gain
53   Float_t fLightFactor ;            //! a calculated factor
54   Float_t fAPDFactor ;              //! a calculated factor
55
56   ClassDef(AliEMCALv1,4)//Implementation of EMCAL manager class to produce hits in a Central Calorimeter 
57
58 };
59
60 #endif // AliEMCALV1_H