]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliFRAME.cxx
New geometry files from R.Barbera
[u/mrichter/AliRoot.git] / STRUCT / AliFRAME.cxx
CommitLineData
fe4da5cc 1///////////////////////////////////////////////////////////////////////////////
2// //
3// Space Frame //
4// This class contains the description of the Space Frame geometry //
5// //
6//Begin_Html
7/*
1439f98e 8<img src="picts/AliFRAMEClass.gif">
fe4da5cc 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"
fe4da5cc 23
24ClassImp(AliFRAME)
25
26//_____________________________________________________________________________
27AliFRAME::AliFRAME()
28{
29 //
30 // Default constructor
31 //
32}
33
34//_____________________________________________________________________________
35AliFRAME::AliFRAME(const char *name, const char *title)
b8032157 36 : AliModule(name,title)
fe4da5cc 37{
38 //
39 // Standard constructor
40 //
41
42 SetMarkerColor(7);
43 SetMarkerStyle(2);
44 SetMarkerSize(0.4);
45}
46