]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliPIPE.cxx
Add new background and header. D.Picard
[u/mrichter/AliRoot.git] / STRUCT / AliPIPE.cxx
CommitLineData
fe4da5cc 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"
fe4da5cc 15
16ClassImp(AliPIPE)
17
18//_____________________________________________________________________________
19AliPIPE::AliPIPE()
20{
21 //
22 // Default constructor for beam pipe
23 //
24}
25
26//_____________________________________________________________________________
27AliPIPE::AliPIPE(const char *name, const char *title)
b8032157 28 : AliModule(name,title)
fe4da5cc 29{
30 //
31 // Standard constructor for beam pipe
32 //
33 SetMarkerColor(7);
34 SetMarkerStyle(2);
35 SetMarkerSize(0.4);
36}
37