]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSv0.h
Bug corrected in the instantiation mechanism
[u/mrichter/AliRoot.git] / PHOS / AliPHOSv0.h
CommitLineData
9f616d61 1#ifndef ALIPHOSV0_H
2#define ALIPHOSV0_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
b2a60966 6//_________________________________________________________________________
7// Implementation version v0 of PHOS Manager class
8// Layout EMC + PPSD has name GPS2
9//
10//*-- Author: Yves Schutz (SUBATECH)
d15a28e7 11
12// --- ROOT system ---
13#include "TClonesArray.h"
14
15// --- AliRoot header files ---
fe4da5cc 16#include "AliPHOS.h"
d15a28e7 17#include "AliPHOSGeometry.h"
18#include "AliPHOSReconstructioner.h"
19#include "AliPHOSTrackSegmentMaker.h"
908558fc 20#include "AliPHOSPID.h"
d15a28e7 21
22class AliPHOSv0 : public AliPHOS {
23
24public:
25
f78d91b7 26 AliPHOSv0() {
27 //ctor
bb05128a 28 fGeom=0;
f78d91b7 29 }
d15a28e7 30 AliPHOSv0(const char *name, const char *title="") ;
839ffcb3 31 AliPHOSv0(const AliPHOSv0 & phos) {
32 // cpy ctor: no implementation yet
33 // requested by the Coding Convention
34 assert(0==1) ;
5f20d3fb 35 }
36 virtual ~AliPHOSv0(void){
37 // dtor
38 }
d15a28e7 39
f78d91b7 40 virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits ) {
41 // useless since there are no hits
42 assert(0==1) ;
43 }
d15a28e7 44 virtual void BuildGeometry(void) ; // creates the geometry for the ROOT display
45 void BuildGeometryforPHOS(void) ; // creates the PHOS geometry for the ROOT display
46 void BuildGeometryforPPSD(void) ; // creates the PPSD geometry for the ROOT display
47 virtual void CreateGeometry(void) ; // creates the geometry for GEANT
48 void CreateGeometryforPHOS(void) ; // creates the PHOS geometry for GEANT
49 void CreateGeometryforPPSD(void) ; // creates the PPSD geometry for GEANT
f78d91b7 50 virtual AliPHOSGeometry * GetGeometry() {
51 // gets the pointer to the AliPHOSGeometry unique instance
52 return fGeom ;
53 }
d15a28e7 54 virtual void Init(void) ; // does nothing
f78d91b7 55 Int_t IsVersion(void) const {
56 // Gives the version number
57 return 0 ;
58 }
59 virtual TString Version(void){
60 // As above
61 return TString("v0") ;
62 }
5f20d3fb 63
839ffcb3 64 AliPHOSv0 & operator = (const AliPHOSv0 & rvalue) {
65 // assignement operator requested by coding convention
66 // but not needed
67 assert(0==1) ;
68 return *this ;
69 }
5f20d3fb 70
71 protected:
72
b2a60966 73 AliPHOSGeometry * fGeom ; // Geometry definition
5f20d3fb 74
b2a60966 75 ClassDef(AliPHOSv0,1) // Implementation of PHOS manager class for layout EMC+PPSD
5f20d3fb 76
77 };
78
9f616d61 79#endif // AliPHOSV0_H