]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliPIPE.cxx
This commit was generated by cvs2svn to compensate for changes in r2,
[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"
15#include "TGeant3.h"
16
17ClassImp(AliPIPE)
18
19//_____________________________________________________________________________
20AliPIPE::AliPIPE()
21{
22 //
23 // Default constructor for beam pipe
24 //
25}
26
27//_____________________________________________________________________________
28AliPIPE::AliPIPE(const char *name, const char *title)
29 : AliDetector(name,title)
30{
31 //
32 // Standard constructor for beam pipe
33 //
34 SetMarkerColor(7);
35 SetMarkerStyle(2);
36 SetMarkerSize(0.4);
37}
38
39//_____________________________________________________________________________
40void AliPIPE::BuildGeometry()
41{
42 //
43 // Create ROOT TNode geometry. Only for sensitive detectors
44 //
45}
46
47
48
49//_____________________________________________________________________________
50void AliPIPE::StepManager()
51{
52 //
53 // Called at every step in the beam pipe
54 //
55}