]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliFRAMEv0.cxx
Changed mother volume to not overlap with START support.
[u/mrichter/AliRoot.git] / STRUCT / AliFRAMEv0.cxx
CommitLineData
4c039060 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/*
17$Log$
43ea1292 18Revision 1.15 2000/12/21 16:41:06 morsch
19Coding convention clean-up (RS3)
20
13391c3e 21Revision 1.14 2000/10/02 21:28:15 fca
22Removal of useless dependecies via forward declarations
23
94de3818 24Revision 1.13 2000/06/11 12:34:49 morsch
25Coding rule violations corrected
26
b43eb0dc 27Revision 1.12 2000/02/23 16:25:24 fca
28AliVMC and AliGeant3 classes introduced
29ReadEuclid moved from AliRun to AliModule
30
b13db077 31Revision 1.11 1999/11/01 20:42:42 fca
32FRAME version 1 is now the symmetric one.
33
ba25f477 34Revision 1.10 1999/10/06 20:56:55 fca
35Introducing new frame 1099
36
90a46d5c 37Revision 1.9 1999/09/29 09:24:30 fca
38Introduction of the Copyright and cvs Log
39
4c039060 40*/
41
fe4da5cc 42////////////////////////////////////////////////
43// space frame class /
44////////////////////////////////////////////////
45
fe4da5cc 46#include "AliFRAMEv0.h"
47#include "AliRun.h"
fe4da5cc 48#include "TSystem.h"
49
50ClassImp(AliFRAMEv0)
51
52//_____________________________________________________________________________
b8032157 53AliFRAMEv0::AliFRAMEv0()
fe4da5cc 54{
b43eb0dc 55// Constructor
fe4da5cc 56}
57
58//_____________________________________________________________________________
59AliFRAMEv0::AliFRAMEv0(const char *name, const char *title)
60 : AliFRAME(name,title)
61{
b43eb0dc 62// Constructor
dda5e866 63 printf("Create FRAMEv0 object\n");
90a46d5c 64 fEuclidGeometry="$(ALICE_ROOT)/Euclid/frame1099h.euc";
dda5e866 65 fEuclidMaterial="$(ALICE_ROOT)/Euclid/frame.tme";
fe4da5cc 66}
67
68
69//___________________________________________
70void AliFRAMEv0::CreateGeometry()
71{
fe4da5cc 72//Begin_Html
73/*
1439f98e 74<img src="picts/frame.gif">
fe4da5cc 75*/
76//End_Html
77
78
79//Begin_Html
80/*
1439f98e 81<img src="picts/tree_frame.gif">
fe4da5cc 82*/
83//End_Html
84
fe4da5cc 85 char *filetmp;
fe4da5cc 86 char topvol[5];
fe4da5cc 87
88//
89// The Space frame
dda5e866 90 filetmp = gSystem->ExpandPathName(fEuclidGeometry.Data());
fe4da5cc 91 FILE *file = fopen(filetmp,"r");
92 delete [] filetmp;
93 if(file) {
94 fclose(file);
dda5e866 95 printf(" Reading FRAME geometry\n");
b13db077 96 ReadEuclid(fEuclidGeometry.Data(),topvol);
fe4da5cc 97 } else {
dda5e866 98 Warning("CreateGeometry","The Euclid file %s does not exist!\n",
99 fEuclidGeometry.Data());
fe4da5cc 100 exit(1);
101 }
102//
103// --- Place the FRAME ghost volume (B010) in its mother volume (ALIC)
104// and make it invisible
105//
106// AliMatrix(idrotm[2001],90.,0.,90.,90.,180.,0.);
fe4da5cc 107
dda5e866 108 gMC->Gspos(topvol,1,"ALIC",0,0,0,0,"ONLY");
109
110 gMC->Gsatt(topvol, "SEEN", 0);
fe4da5cc 111}
112
113
fe4da5cc 114//___________________________________________
115void AliFRAMEv0::CreateMaterials()
116{
13391c3e 117// Create Geant materials
118//
fe4da5cc 119 char *filetmp;
dda5e866 120 printf("Create FRAMEv0 materials\n");
121 filetmp = gSystem->ExpandPathName(fEuclidMaterial.Data());
fe4da5cc 122 FILE *file = fopen(filetmp,"r");
123 delete [] filetmp;
124 if(file) {
125 fclose(file);
b13db077 126 ReadEuclidMedia(fEuclidMaterial.Data());
fe4da5cc 127 } else {
dda5e866 128 Warning("CreateMaterials","The material file %s does not exist!\n",
129 fEuclidMaterial.Data());
fe4da5cc 130 exit(1);
131 }
132}
133
ba25f477 134//_____________________________________________________________________________
135void AliFRAMEv0::Init()
136{
137 //
138 // Initialise the module after the geometry has been defined
139 //
140
141 printf("**************************************"
142 " FRAME "
143 "**************************************\n");
144 printf("\n Version 0 of FRAME initialised, "
145 "with openings for PHOS and RICH\n\n");
146 printf("**************************************"
147 " FRAME "
148 "**************************************\n");
149
150}
fe4da5cc 151
152
153
154
155
156
157
158
159
160
161
162
163