]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALv3.h
Adding class AliVZEROMisAligner
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv3.h
CommitLineData
58feed7c 1#ifndef ALIEMCALV3_H
2#define ALIEMCALV3_H
3/* Copyright(c) 1998-2004, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice
5 */
6/* $Id$ */
7
8//_________________________________________________________________________
9// Implementation version v3 of EMCAL Manager class for Shish-Kebab case
10// Save all hits inside of Sc - Nov 25, 05
11//*--
12//*-- Author: Aleksei Pavlinov
13
58feed7c 14class AliEMCALGeometry;
15
16// --- AliRoot header files ---
17#include "AliEMCALv1.h"
18
19class AliEMCALv3 : public AliEMCALv1 {
20
21public:
22
23 AliEMCALv3(void) ;
24 AliEMCALv3(const char *name, const char *title="") ;
0a4cb131 25 AliEMCALv3(const AliEMCALv3 & emcal); //copy ctor
26
58feed7c 27 virtual ~AliEMCALv3(void) ;
4800667c 28
29 using AliEMCALv1::AddHit;
58feed7c 30 virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t iparent, Float_t ienergy,
31 Int_t id, Float_t *hits, Float_t *p);
32
33 virtual void StepManager(void) ;
58feed7c 34
35 // Gives the version number
36 virtual Int_t IsVersion(void) const {return 3;}
37 virtual const TString Version(void)const {return TString("v3");}
38 AliEMCALv3 & operator = (const AliEMCALv3 & /*rvalue*/){
39 Fatal("operator =", "not implemented") ;
40 return *this;}
41
58feed7c 42 virtual void Browse(TBrowser* b);
43
44 AliEMCALGeometry* fGeometry; //!
58feed7c 45
ab6a174f 46 ClassDef(AliEMCALv3,1) //Implementation of EMCAL manager class to produce hits in a Shish-Kebab
58feed7c 47
48};
49
50#endif // AliEMCALV3_H