]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALv0.h
- added the PHOS library to the autotools configuration
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv0.h
CommitLineData
2012850d 1#ifndef ALIEMCALV0_H
2#define ALIEMCALV0_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// Implementation version v0 of EMCAL Manager class
10//*--
11//*-- Author: Yves Schutz (SUBATECH)
b13bbe81 12//*-- and : Sahal Yacoob (LBL / UCT)
d87bd045 13// : Aleksei Pavlinov (WSU) SHASHLYK
2012850d 14
15// --- ROOT system ---
16
b13bbe81 17class TFile;
1963b290 18class TList;
19class TNode;
c01485dd 20class AliEMCALShishKebabTrd1Module;
b13bbe81 21
2012850d 22// --- AliRoot header files ---
23#include "AliEMCAL.h"
5f66b6c6 24#include "TGeoManager.h"
cde6a23d 25#include <TArrayF.h>
b13bbe81 26//class AliEMCALGeometry ;
2012850d 27
28class AliEMCALv0 : public AliEMCAL {
29
30 public:
31
b13bbe81 32 AliEMCALv0():AliEMCAL() {}
2012850d 33 AliEMCALv0(const char *name, const char *title="") ;
b13bbe81 34 virtual ~AliEMCALv0(){}
35
0a4cb131 36 AliEMCALv0(const AliEMCALv0 & emcal);
37
cde6a23d 38 AliEMCALv0 & operator = (const AliEMCALv0 & /*rvalue*/) {
39 // assignement operator requested by coding convention but not needed
40 Fatal("operator =", "not implemented");
41 return *this;
42 }
43
4800667c 44 using AliEMCAL::AddHit;
45
5f66b6c6 46 virtual void AddAlignableVolumes() const;
47
b13bbe81 48 virtual void BuildGeometry();// creates the geometry for the ROOT display
1963b290 49 TNode *BuildGeometryOfWSUC(); // WSUC - test environment
b13bbe81 50 virtual void CreateGeometry() ;// creates the geometry for GEANT
2012850d 51 virtual void Init(void) ; // does nothing
52 virtual Int_t IsVersion(void) const {
53 // Gives the version number
54 return 0 ;
55 }
05a92d59 56 virtual const TString Version(void) const{
2012850d 57 // As above
58 return TString("v0") ;
59 }
60
1963b290 61 // ShishKebab
62 void CreateShishKebabGeometry();
63 void CreateSmod(const char* mother="XEN1");
64 void CreateEmod(const char* mother="SMOD", const char* child="EMOD");
65 // TRD1
66 void Trd1Tower3X3(const double parSCM0[5]);
67 void Trd1Tower4X4();
68 void PbInTrap(const double parTRAP[11], TString n);
69 // TRD2 - 1th design
cde6a23d 70 void Scm0InTrd2(const AliEMCALGeometry * g, const Double_t emodPar[5], Double_t parSCM0[5]);
1963b290 71 void Division2X2InScm0(const AliEMCALGeometry * g, const Double_t parSCM0[5]);
72 void PbInTrapForTrd2(const double *parTRAP, TString name);
73 // TRD2 - 2th design
cde6a23d 74 void PbmoInTrd2(const AliEMCALGeometry * g, const Double_t emodPar[5], Double_t parPBMO[5]);
1963b290 75 void Division2X2InPbmo(const AliEMCALGeometry * g, const Double_t parPBMO[5]);
76
c01485dd 77 TList *GetShishKebabModules() {return fShishKebabModules;}
21cf2b24 78 AliEMCALShishKebabTrd1Module *GetShishKebabModule(Int_t neta=0);
cde6a23d 79
2012850d 80 protected:
cde6a23d 81 TList *fShishKebabModules; //! list of modules
82 private:
83 TArrayF fEnvelop1; //! parameters of EMCAL envelop for TRD1(2) case
84 Int_t fIdRotm; //! number of rotation matrix (working variable)
85 Int_t *fIdTmedArr; //! fIdtmed->GetArray() - 1599;
86 Double_t fSampleWidth; //! sample width = double(g->GetECPbRadThick()+g->GetECScintThick());
87 Double_t fSmodPar0; //! x size of super module
88 Double_t fSmodPar1; //! y size of super module
89 Double_t fSmodPar2; //! z size of super module
90 Double_t fParEMOD[5]; //! parameters of EMCAL module (TRD1,2)
b13bbe81 91
c63c3c5d 92 ClassDef(AliEMCALv0,3) // Implementation of EMCAL manager class for midrapidity barrel layout between 80 and 180(190) degrees
2012850d 93
94 };
95
96#endif // AliEMCALV0_H