]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFv4T0.h
Minor fix (HP)
[u/mrichter/AliRoot.git] / TOF / AliTOFv4T0.h
CommitLineData
d599d913 1//_________________________________________________________________________
2// Implementation version v4 of TOF Manager class
3// FULL COVERAGE VERSION i.e. NO HOLES FOR PHOS AND HMPID (RICH) ARE DEFINED
4//
5//*-- Authors: Pierella, Seganti, Vicinanza (Bologna and Salerno University)
6
7#ifndef ALITOFv4T0_H
8#define ALITOFv4T0_H
9/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
10 * See cxx source for full Copyright notice */
11
12#include "AliTOF.h"
13
14
15class AliTOFv4T0 : public AliTOF {
16
17public:
18 AliTOFv4T0();
19 AliTOFv4T0(const char *name, const char *title);
0f4a7374 20 virtual ~AliTOFv4T0() { if (fTOFGeometry) {delete fTOFGeometry;
21 fTOFGeometry = 0; }
22}
d599d913 23 virtual void BuildGeometry();
24 virtual void CreateGeometry();
25 virtual void CreateMaterials();
26 virtual void Init();
27 virtual Int_t IsVersion() const {return 6;}
28 virtual void TOFpc(Float_t xtof,Float_t ytof,Float_t zlenC,Float_t zlenB,
29 Float_t zlenA,Float_t ztof0);
30 virtual void StepManager();
31 virtual void DrawModule() const;
32 virtual void DrawDetectorModules();
33 virtual void DrawDetectorStrips();
0f4a7374 34
d599d913 35private:
36 Int_t fIdFTOA; // FTOA volume identifier (outer plate A)
37 Int_t fIdFTOB; // FTOB volume identifier (outer plate B)
38 Int_t fIdFTOC; // FTOC volume identifier (outer plate C)
39 Int_t fIdFLTA; // FLTA volume identifier (inner plate A)
40 Int_t fIdFLTB; // FLTB volume identifier (inner plate B)
41 Int_t fIdFLTC; // FLTC volume identifier (inner plate C)
0f4a7374 42 Bool_t fTOFHoles; // Selecting Geometry with and w/o holes
43
44 ClassDef(AliTOFv4T0,1) //Time Of Flight version 4
d599d913 45};
46
47#endif /* ALITOFv4T0_H */