]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFv4T0.h
- Compute parameter covariances including absorber dispersion effects
[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 BuildGeometry();
26 virtual void CreateGeometry();
27 virtual void CreateMaterials();
28 virtual void Init();
29 virtual Int_t IsVersion() const {return 6;}
30 virtual void TOFpc(Float_t xtof,Float_t ytof,Float_t zlenC,Float_t zlenB,
31 Float_t zlenA,Float_t ztof0);
d3c7bfac 32 virtual void TOFpc(Float_t, Float_t, Float_t, Float_t) {};
d599d913 33 virtual void StepManager();
ba380e33 34 virtual void DrawModule() const;
7aeeaf38 35 virtual void DrawDetectorModules() const;
36 virtual void DrawDetectorStrips() const;
0f4a7374 37
d599d913 38private:
39 Int_t fIdFTOA; // FTOA volume identifier (outer plate A)
40 Int_t fIdFTOB; // FTOB volume identifier (outer plate B)
41 Int_t fIdFTOC; // FTOC volume identifier (outer plate C)
42 Int_t fIdFLTA; // FLTA volume identifier (inner plate A)
43 Int_t fIdFLTB; // FLTB volume identifier (inner plate B)
44 Int_t fIdFLTC; // FLTC volume identifier (inner plate C)
0f4a7374 45 Bool_t fTOFHoles; // Selecting Geometry with and w/o holes
46
d3c7bfac 47 ClassDef(AliTOFv4T0,2) //Time Of Flight version 4
d599d913 48};
49
50#endif /* ALITOFv4T0_H */