]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliFRAME.cxx
New version of beam-pipe geometry. Ref. AL502206PL
[u/mrichter/AliRoot.git] / STRUCT / AliFRAME.cxx
CommitLineData
4c039060 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
fe4da5cc 20///////////////////////////////////////////////////////////////////////////////
21// //
22// Space Frame //
23// This class contains the description of the Space Frame geometry //
24// //
25//Begin_Html
26/*
1439f98e 27<img src="picts/AliFRAMEClass.gif">
fe4da5cc 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"
fe4da5cc 42
43ClassImp(AliFRAME)
44
45//_____________________________________________________________________________
46AliFRAME::AliFRAME()
47{
48 //
49 // Default constructor
50 //
51}
52
53//_____________________________________________________________________________
54AliFRAME::AliFRAME(const char *name, const char *title)
b8032157 55 : AliModule(name,title)
fe4da5cc 56{
57 //
58 // Standard constructor
59 //
60
61 SetMarkerColor(7);
62 SetMarkerStyle(2);
63 SetMarkerSize(0.4);
64}
65