]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALv0.h
Removing extra semicolons (FedoraCore3, gcc 3.4.2)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv0.h
1 #ifndef ALIEMCALV0_H
2 #define ALIEMCALV0_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 v0 of EMCAL Manager class 
10 //*--                  
11 //*-- Author: Yves Schutz (SUBATECH)
12 //*-- and   : Sahal Yacoob (LBL / UCT) 
13 //#include <assert.h>
14
15 // --- ROOT system ---
16
17 class TFile;
18
19 // --- AliRoot header files ---
20 #include "AliEMCAL.h"
21
22 //class AliEMCALGeometry ; 
23
24 class AliEMCALv0 : public AliEMCAL {
25
26  public:
27
28   AliEMCALv0():AliEMCAL() {}
29   AliEMCALv0(const char *name, const char *title="") ;
30   AliEMCALv0(const AliEMCALv0 & emcal):AliEMCAL(emcal) {
31     // cpy ctor: no implementation yet
32     // requested by the Coding Convention
33     Fatal("cpy ctor", "not implemented") ;  
34   } 
35   virtual ~AliEMCALv0(){} 
36
37   virtual void BuildGeometry();// creates the geometry for the ROOT display
38   virtual void CreateGeometry() ;// creates the geometry for GEANT
39   virtual void   Init(void) ;                                       // does nothing
40   virtual Int_t  IsVersion(void) const { 
41     // Gives the version number 
42     return 0 ; 
43   }
44   virtual const TString Version(void) const{ 
45     // As above
46     return TString("v0") ; 
47   }
48   
49   AliEMCALv0 & operator = (const AliEMCALv0 & /*rvalue*/)  {
50     // assignement operator requested by coding convention but not needed
51     Fatal("operator =", "not implemented") ;  
52     return *this ; 
53   }
54   
55  protected:
56
57   ClassDef(AliEMCALv0,2)  // Implementation of EMCAL manager class for midrapidity barrel layout between 0 and 120 degrees 
58     
59     };
60     
61 #endif // AliEMCALV0_H