]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliPIPE.cxx
Changed DimuonCombinator into AliDimuCombinator to follow ALICE coding
[u/mrichter/AliRoot.git] / STRUCT / AliPIPE.cxx
1 ///////////////////////////////////////////////////////////////////////////////
2 //                                                                           //
3 //  Beam pipe class                                                          //
4 //                                                                           //
5 //Begin_Html
6 /*
7 <img src="gif/AliPIPEClass.gif">
8 */
9 //End_Html
10 //                                                                           //
11 ///////////////////////////////////////////////////////////////////////////////
12
13 #include "AliPIPE.h"
14 #include "AliRun.h"
15  
16 ClassImp(AliPIPE)
17  
18 //_____________________________________________________________________________
19 AliPIPE::AliPIPE()
20 {
21   //
22   // Default constructor for beam pipe
23   //
24 }
25  
26 //_____________________________________________________________________________
27 AliPIPE::AliPIPE(const char *name, const char *title)
28        : AliModule(name,title)
29 {
30   //
31   // Standard constructor for beam pipe
32   //
33   SetMarkerColor(7);
34   SetMarkerStyle(2);
35   SetMarkerSize(0.4);
36 }
37