]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSvPPRasymmFMD.h
update (alberto):
[u/mrichter/AliRoot.git] / ITS / AliITSvPPRasymmFMD.h
CommitLineData
6b2a1732 1#ifndef ALIITSVPPRASYMMFMD_H
2#define ALIITSVPPRASYMMFMD_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// Manager and hits classes for set: ITS version 10 //
10/////////////////////////////////////////////////////////
11
12#include "AliITS.h"
13
14class AliITSvPPRasymmFMD : public AliITS {
15
16 public:
17 AliITSvPPRasymmFMD();
18 AliITSvPPRasymmFMD(const char *name, const char *title);
19 AliITSvPPRasymmFMD(const AliITSvPPRasymmFMD &source); // copy constructor
20 AliITSvPPRasymmFMD& operator=(const AliITSvPPRasymmFMD &source); // assignment operator
21 virtual ~AliITSvPPRasymmFMD() ;
22 virtual void BuildGeometry();
23 virtual void CreateGeometry();
24 virtual void CreateMaterials();
25 virtual Int_t IsVersion() const {// returns the ITS version number
26 return 10;}
27 virtual void Init();
28 virtual void SetDefaults();
41b19549 29 virtual void DrawModule() const;
6b2a1732 30 virtual void StepManager();
9116ab2d 31 virtual void SetWriteDet(Bool_t det=kFALSE){ // set .det write
6b2a1732 32 fGeomDetOut = det;}
33 virtual void SetWriteDet(const char *f){ // set write file
34 strncpy(fWrite,f,60);fGeomDetOut = kTRUE;}
9116ab2d 35 virtual void SetReadDet(Bool_t det=kFALSE){ //set .det read
6b2a1732 36 fGeomDetIn = det;}
37 virtual void SetReadDet(const char *f){ // set read file
38 strncpy(fRead,f,60);fGeomDetIn = kTRUE;}
6b2a1732 39 virtual void SetEUCLIDFileName(const char *f){ // set write file
a8e8915c 40 fEuclidGeometry=f; SetEUCLID();}
d2a27428 41 virtual void SetMinorVersion(Int_t v=2){ // Choose between existing minor versions
6b2a1732 42 fMinorVersion = v;}
d2a27428 43 virtual void SetThicknessDet1(Float_t v=200.){
6b2a1732 44 // Set detector thickness in layer 1
45 fDet1 = v;}
d2a27428 46 virtual void SetThicknessDet2(Float_t v=200.){
6b2a1732 47 // Set detector thickness in layer 2
48 fDet2 = v;}
dc3ff20e 49 virtual void SetThicknessChip1(Float_t v=150.){
6b2a1732 50 // Set chip thickness in layer 1
51 fChip1 = v;}
dc3ff20e 52 virtual void SetThicknessChip2(Float_t v=150.){
6b2a1732 53 // Set chip thickness in layer 2
54 fChip2 = v;}
d2a27428 55 virtual void SetRails(Int_t v=0){
6b2a1732 56 // Set flag for rails
57 fRails = v;}
87577a03 58 virtual void SetCoolingFluid(Int_t v=1){
6b2a1732 59 // Set flag for cooling fluid
87577a03 60 fFluid = v;}
61 virtual void SetDensityServicesByThickness(){// uses services density
62 // calculation based on the thickness of the services.
63 fByThick = kTRUE;}
64 virtual void SetDensityServicesByMass(){// uses services density
65 // calculation based on the Mass of the services.
66 fByThick = kFALSE;}
6b2a1732 67 virtual const char *GetEULIIDFileName() const{ // return .euc file name
68 return fEuclidGeometry.Data();}
41b19549 69 virtual Bool_t GetWriteDet() const { // returns value GeomDetOut flag.
6b2a1732 70 return fGeomDetOut;}
41b19549 71 virtual Bool_t GetReadDet() const { // returns value GeomDetIn flag.
6b2a1732 72 return fGeomDetIn;}
73 virtual char *GetReadDetFileName(){ // return .det read file name
74 if(fRead[0]!='\0') return fRead; else return fEuclidGeomDet;}
75 virtual char *GetWriteDetFileName(){ // return .det write file name
76 if(fWrite[0]!='\0') return fWrite; else return fEuclidGeomDet;}
41b19549 77 virtual Int_t GetMajorVersion() const {// return Major Version Number
6b2a1732 78 return fMajorVersion;}
41b19549 79 virtual Int_t GetMinorVersion() const {// return Major Version Number
6b2a1732 80 return fMinorVersion;}
41b19549 81 virtual Float_t GetThicknessDet1() const {
6b2a1732 82 // Get detector thickness in layer 1
83 return fDet1;}
41b19549 84 virtual Float_t GetThicknessDet2() const {
6b2a1732 85 // Get detector thickness in layer 2
86 return fDet2;}
41b19549 87 virtual Float_t GetThicknessChip1() const {
6b2a1732 88 // Get chip thickness in layer 1
89 return fChip1;}
41b19549 90 virtual Float_t GetThicknessChip2()const {
6b2a1732 91 // Get chip thickness in layer 2
92 return fChip2;}
41b19549 93 virtual Int_t GetRails() const {
6b2a1732 94 // Get flag for rails
87577a03 95 return fRails;}
41b19549 96 virtual Int_t GetCoolingFluid() const{
6b2a1732 97 // Get flag for cooling fluid
87577a03 98 return fFluid;}
99
6b2a1732 100 private:
101 void InitAliITSgeom();
102
103 // TString fEuclidGeomtery,fEuclidMaterial defined in AliModule.
6b2a1732 104 Bool_t fGeomDetOut; // Flag to write .det file out
105 Bool_t fGeomDetIn; // Flag to read .det file or directly from Geat.
87577a03 106 Bool_t fByThick; // Flag to use services materials by thickness
107 // ture, or mass false.
6b2a1732 108 Int_t fMajorVersion; // Major version number == IsVersion
109 Int_t fMinorVersion; // Minor version number
110 char fEuclidGeomDet[60];// file where detector transormation are define.
111 char fRead[60]; //! file name to read .det file
112 char fWrite[60]; //! file name to write .det file
113 Float_t fDet1; // thickness of detector in SPD layer 1
114 Float_t fDet2; // thickness of detector in SPD layer 2
115 Float_t fChip1; // thickness of chip in SPD layer 1
116 Float_t fChip2; // thickness of chip in SPD layer 2
117 Int_t fRails; // flag to switch rails on (=1) and off (=0)
118 Int_t fFluid; // flag to switch between water (=1) and freon (=0)
119 Int_t fIDMother; //! ITS Mother Volume id.
120
41b19549 121 ClassDef(AliITSvPPRasymmFMD,3) //Hits manager for set:ITS version 8
6b2a1732 122 // PPR detailed Geometry asymmetric
123};
124
125#endif