]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliFRAME.cxx
Added SetUserDecay routine. When a particle decays the standard MC decay
[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  
24 ClassImp(AliFRAME)
25  
26 //_____________________________________________________________________________
27 AliFRAME::AliFRAME()
28 {
29   //
30   // Default constructor
31   //
32 }
33  
34 //_____________________________________________________________________________
35 AliFRAME::AliFRAME(const char *name, const char *title)
36   : AliModule(name,title)
37 {
38   //
39   // Standard constructor
40   //
41     
42   SetMarkerColor(7);
43   SetMarkerStyle(2);
44   SetMarkerSize(0.4);
45 }
46