]>
Commit | Line | Data |
---|---|---|
b13bbe81 | 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) | |
ffa6d63b | 12 | //*-- and : Jennifer Klay (LBL) |
b13bbe81 | 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 { | |
b13bbe81 | 24 | |
1f4d29d2 | 25 | public: |
26 | ||
27 | AliEMCALv1(void) ; | |
28135539 | 28 | AliEMCALv1(const char *name, const char *title="", const Bool_t checkGeoAndRun = kTRUE) ; |
1f4d29d2 | 29 | virtual ~AliEMCALv1(void) ; |
4800667c | 30 | |
31 | using AliEMCALv0::AddHit; | |
1f4d29d2 | 32 | virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t iparent, Float_t ienergy, |
33 | Int_t id, Float_t *hits, Float_t *p); | |
34 | // Gives the version number | |
35 | virtual Int_t IsVersion(void) const {return 1;} | |
36 | virtual void StepManager(void) ; | |
ab37d09c | 37 | virtual void RemapTrackHitIDs(Int_t *map); |
38 | virtual void FinishPrimary(); | |
05a92d59 | 39 | virtual const TString Version(void)const {return TString("v0");} |
9b358506 | 40 | virtual void SetTimeCut(Float_t tc){ fTimeCut = tc;} |
cde6a23d | 41 | virtual Float_t GetTimeCut() const {return fTimeCut;} |
1f4d29d2 | 42 | |
1963b290 | 43 | protected: |
cde6a23d | 44 | Int_t fCurPrimary; // Current primary track |
45 | Int_t fCurParent; // Current parent | |
46 | Int_t fCurTrack; // Current track | |
47 | Float_t fTimeCut; // Cut to remove the background from the ALICE system | |
1f4d29d2 | 48 | |
e939a978 | 49 | private: |
50 | AliEMCALv1(const AliEMCALv1 & emcal); | |
51 | AliEMCALv1 & operator = (const AliEMCALv1 & /*rvalue*/); | |
52 | ||
cde6a23d | 53 | ClassDef(AliEMCALv1,9) // Implementation of EMCAL manager class to produce hits in a Central Calorimeter |
7b6cc0b5 | 54 | |
b13bbe81 | 55 | }; |
1f4d29d2 | 56 | |
b13bbe81 | 57 | #endif // AliEMCALV1_H |