3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice
8 //_________________________________________________________________________
9 // Implementation version v0 of EMCAL Manager class
11 //*-- Author: Yves Schutz (SUBATECH)
15 // --- ROOT system ---
17 // --- AliRoot header files ---
19 class AliEMCALGeometry ;
21 class AliEMCALv0 : public AliEMCAL {
25 AliEMCALv0() {fGeom=0;}
26 AliEMCALv0(const char *name, const char *title="") ;
27 AliEMCALv0(const AliEMCALv0 & emcal) {
28 // cpy ctor: no implementation yet
29 // requested by the Coding Convention
32 virtual ~AliEMCALv0(void){}
34 virtual void BuildGeometry(void) ; // creates the geometry for the ROOT display
35 virtual void CreateGeometry(void) ; // creates the geometry for GEANT
37 virtual void Init(void) ; // does nothing
38 virtual Int_t IsVersion(void) const {
39 // Gives the version number
42 virtual TString Version(void){
44 return TString("v0") ;
47 AliEMCALv0 & operator = (const AliEMCALv0 & rvalue) {
48 // assignement operator requested by coding convention but not needed
55 ClassDef(AliEMCALv0,1) // Implementation of EMCAL manager class for layout EMC+PPSD
59 #endif // AliEMCALV0_H