]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliFRAMEv0.cxx
Added the entry for the IRST code checking utility
[u/mrichter/AliRoot.git] / STRUCT / AliFRAMEv0.cxx
CommitLineData
fe4da5cc 1////////////////////////////////////////////////
2// space frame class /
3////////////////////////////////////////////////
4
5#include <stdio.h>
6#include <TMath.h>
7#include <TRandom.h>
8#include <TVector.h>
9#include "AliFRAMEv0.h"
10#include "AliRun.h"
11#include "stdlib.h"
12#include "AliMC.h"
13#include "TSystem.h"
14
15ClassImp(AliFRAMEv0)
16
17//_____________________________________________________________________________
b8032157 18AliFRAMEv0::AliFRAMEv0()
fe4da5cc 19{
20}
21
22//_____________________________________________________________________________
23AliFRAMEv0::AliFRAMEv0(const char *name, const char *title)
24 : AliFRAME(name,title)
25{
dda5e866 26 printf("Create FRAMEv0 object\n");
2dd54ca5 27 fEuclidGeometry="$(ALICE_ROOT)/Euclid/frame0799.euc";
dda5e866 28 fEuclidMaterial="$(ALICE_ROOT)/Euclid/frame.tme";
fe4da5cc 29}
30
31
32//___________________________________________
33void AliFRAMEv0::CreateGeometry()
34{
fe4da5cc 35//Begin_Html
36/*
1439f98e 37<img src="picts/frame.gif">
fe4da5cc 38*/
39//End_Html
40
41
42//Begin_Html
43/*
1439f98e 44<img src="picts/tree_frame.gif">
fe4da5cc 45*/
46//End_Html
47
fe4da5cc 48 char *filetmp;
fe4da5cc 49 char topvol[5];
fe4da5cc 50
51//
52// The Space frame
dda5e866 53 filetmp = gSystem->ExpandPathName(fEuclidGeometry.Data());
fe4da5cc 54 FILE *file = fopen(filetmp,"r");
55 delete [] filetmp;
56 if(file) {
57 fclose(file);
dda5e866 58 printf(" Reading FRAME geometry\n");
59 gAlice->ReadEuclid(fEuclidGeometry.Data(),this,topvol);
fe4da5cc 60 } else {
dda5e866 61 Warning("CreateGeometry","The Euclid file %s does not exist!\n",
62 fEuclidGeometry.Data());
fe4da5cc 63 exit(1);
64 }
65//
66// --- Place the FRAME ghost volume (B010) in its mother volume (ALIC)
67// and make it invisible
68//
69// AliMatrix(idrotm[2001],90.,0.,90.,90.,180.,0.);
fe4da5cc 70
dda5e866 71 gMC->Gspos(topvol,1,"ALIC",0,0,0,0,"ONLY");
72
73 gMC->Gsatt(topvol, "SEEN", 0);
fe4da5cc 74}
75
76
fe4da5cc 77//___________________________________________
78void AliFRAMEv0::CreateMaterials()
79{
80 char *filetmp;
dda5e866 81 printf("Create FRAMEv0 materials\n");
82 filetmp = gSystem->ExpandPathName(fEuclidMaterial.Data());
fe4da5cc 83 FILE *file = fopen(filetmp,"r");
84 delete [] filetmp;
85 if(file) {
86 fclose(file);
dda5e866 87 gAlice->ReadEuclidMedia(fEuclidMaterial.Data(),this);
fe4da5cc 88 } else {
dda5e866 89 Warning("CreateMaterials","The material file %s does not exist!\n",
90 fEuclidMaterial.Data());
fe4da5cc 91 exit(1);
92 }
93}
94
95
96
97
98
99
100
101
102
103
104
105
106
107