]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliFRAME.cxx
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / STRUCT / AliFRAME.cxx
1 ///////////////////////////////////////////////////////////////////////////////
2 //                                                                           //
3 //  Space Frame                                                              //
4 //  This class contains the description of the Space Frame geometry          //
5 //                                                                           //
6 //Begin_Html
7 /*
8 <img src="gif/AliFRAMEClass.gif">
9 </pre>
10 <br clear=left>
11 <font size=+2 color=red>
12 <p>The responsible person for this module is
13 <a href="mailto:andreas.morsch@cern.ch">Andreas Morsch</a>.
14 </font>
15 <pre>
16 */
17 //End_Html
18 //                                                                           //
19 ///////////////////////////////////////////////////////////////////////////////
20
21 #include "AliFRAME.h"
22 #include "AliRun.h"
23 #include "AliMC.h"
24  
25 ClassImp(AliFRAME)
26  
27 //_____________________________________________________________________________
28 AliFRAME::AliFRAME()
29 {
30   //
31   // Default constructor
32   //
33 }
34  
35 //_____________________________________________________________________________
36 AliFRAME::AliFRAME(const char *name, const char *title)
37   : AliDetector(name,title)
38 {
39   //
40   // Standard constructor
41   //
42     
43   SetMarkerColor(7);
44   SetMarkerStyle(2);
45   SetMarkerSize(0.4);
46 }
47  
48 //_____________________________________________________________________________
49 void AliFRAME::BuildGeometry()
50 {
51   //
52   // ROOT TNode geometry is built only for sensitive detectors
53   // and not for structural elements
54   //
55 }
56  
57 //_____________________________________________________________________________
58
59 void AliFRAME::StepManager()
60 {
61   //
62   // Called at every step in the space frame
63   //
64 }