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