]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliFRAME.cxx
Web frame and inner rings pointing.
[u/mrichter/AliRoot.git] / STRUCT / AliFRAME.cxx
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$
18 */
19
20 ///////////////////////////////////////////////////////////////////////////////
21 //                                                                           //
22 //  Space Frame                                                              //
23 //  This class contains the description of the Space Frame geometry          //
24 //                                                                           //
25 //Begin_Html
26 /*
27 <img src="picts/AliFRAMEClass.gif">
28 </pre>
29 <br clear=left>
30 <font size=+2 color=red>
31 <p>The responsible person for this module is
32 <a href="mailto:andreas.morsch@cern.ch">Andreas Morsch</a>.
33 </font>
34 <pre>
35 */
36 //End_Html
37 //                                                                           //
38 ///////////////////////////////////////////////////////////////////////////////
39
40 #include "AliFRAME.h"
41 #include "AliRun.h"
42  
43 ClassImp(AliFRAME)
44  
45 //_____________________________________________________________________________
46 AliFRAME::AliFRAME()
47 {
48   //
49   // Default constructor
50   //
51 }
52  
53 //_____________________________________________________________________________
54 AliFRAME::AliFRAME(const char *name, const char *title)
55   : AliModule(name,title)
56 {
57   //
58   // Standard constructor
59   //
60     
61   SetMarkerColor(7);
62   SetMarkerStyle(2);
63   SetMarkerSize(0.4);
64 }
65