]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCAL.h
Removing old segmentation, obsolete classes and removing old new conditions (Christian)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCAL.h
CommitLineData
2012850d 1#ifndef ALIEMCAL_H
2#define ALIEMCAL_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// Base Class for EMCAL
10//
11//*-- Author: Yves Schutz (SUBATECH)
12
2012850d 13// --- ROOT system ---
05a92d59 14
2012850d 15class TString ;
05a92d59 16class TTask ;
17class TFolder ;
f51151a0 18class TRandom ;
2012850d 19
20// --- AliRoot header files ---
05a92d59 21
2012850d 22#include "AliDetector.h"
8367ce9a 23#include "AliEMCALGeometry.h"
2012850d 24class AliEMCAL : public AliDetector {
25
26 public:
27
b13bbe81 28 AliEMCAL();
2012850d 29 AliEMCAL(const char* name, const char* title="");
39200c71 30 AliEMCAL(const AliEMCAL& emcal) : AliDetector(emcal) {
2012850d 31 // cpy ctor: no implementation yet
32 // requested by the Coding Convention
9859bfc0 33 Fatal("cpy ctor", "not implemented") ;
2012850d 34 }
35 virtual ~AliEMCAL() ;
fdebddeb 36 virtual void AddHit(Int_t, Int_t*, Float_t *) const{
d64c959b 37 Fatal("AddHit(Int_t, Int_t*, Float_t *", "not to be used: use AddHit( Int_t shunt, Int_t primary, Int_t track,Int_t id, Float_t *hits )") ;
b13bbe81 38 }
f51151a0 39 virtual void Copy(AliEMCAL & emcal) ;
8367ce9a 40 virtual AliDigitizer* CreateDigitizer(AliRunDigitizer* manager) const;
f51151a0 41 virtual void CreateMaterials() ;
42 virtual void Digits2Raw();
fdebddeb 43 virtual void FinishRun() {}
8367ce9a 44 virtual AliEMCALGeometry * GetGeometry() const
45 {return AliEMCALGeometry::GetInstance(GetTitle(),"") ; }
46 virtual void Hits2SDigits();
fdebddeb 47 virtual Int_t IsVersion(void) const = 0 ;
56088960 48 // Raw Read Out
49 Double_t GetRawFormatCapa() const { return fgCapa ; }
50 Double_t GetRawFormatHighCharge() const { return fHighCharge ; }
51 Double_t GetRawFormatHighGain() const { return fHighGain ; }
52 Double_t GetRawFormatHighLowGainFactor() const { return fHighLowGainFactor ; }
53 Double_t GetRawFormatLowCharge() const { return ( fHighCharge * fHighLowGainFactor ) ; }
54 Double_t GetRawFormatLowGain() const { return ( fHighGain / fHighLowGainFactor ) ; }
55 Int_t GetRawFormatLowGainOffset() const { return fLowGainOffset ; }
56 Int_t GetRawFormatOrder() const { return fgOrder ; }
046ae904 57 Int_t GetRawFormatTimeBins() const { return fkTimeBins ; }
56088960 58 Double_t GetRawFormatTimeMax() const { return fgTimeMax ; }
59 Double_t GetRawFormatTimePeak() const { return fgTimePeak ; }
60 Double_t GetRawFormatTimeTrigger() const { return fgTimeTrigger ; }
61 static Double_t RawResponseFunction(Double_t *x, Double_t *par) ;
62 static Double_t RawResponseFunctionMax(Double_t charge, Double_t gain) ;
63 //
8367ce9a 64 virtual AliLoader* MakeLoader(const char* topfoldername);
8367ce9a 65 virtual void SetTreeAddress() ;
fdebddeb 66 virtual const TString Version() const {return TString(" ") ; }
9c0a4862 67 AliEMCAL & operator = (const AliEMCAL & /*rvalue*/) {
d64c959b 68 Fatal("operator =", "not implemented") ; return *this ; }
2012850d 69
70protected:
56088960 71
72 Bool_t RawSampledResponse(const Double_t dtime, const Double_t damp, Int_t * adcH, Int_t * adcL) const ;
f51151a0 73
046ae904 74
f51151a0 75 Int_t fBirkC0; // constants for Birk's Law implementation
76 Double_t fBirkC1; // constants for Birk's Law implementation
77 Double_t fBirkC2; // constants for Birk's Law implementation
56088960 78 static Double_t fgCapa ; // capacitor of the preamplifier for the raw RO signal
79 Double_t fHighCharge ; // high charge (to convert energy to charge) for the raw RO signal
80 Double_t fHighGain ; // high gain for the raw RO signal
81 Double_t fHighLowGainFactor ; // high to low gain factor for the raw RO signal
82 Int_t fLowGainOffset ; // to separate high from low gain in the DDL
83 static Int_t fgOrder ; // order of the gamma function for the RO signal
84 static const Int_t fkTimeBins = 256 ; // number of sampling bins of the raw RO signal
85 static Double_t fgTimeMax ; // maximum sampled time of the raw RO signal
86 static Double_t fgTimePeak ; // peaking time of the raw RO signal
87 static Double_t fgTimeTrigger ; // time of the trigger for the RO signal
2012850d 88
56088960 89 ClassDef(AliEMCAL,9) // Electromagnetic calorimeter (base class)
90
91 } ;
2012850d 92
93#endif // ALIEMCAL_H