]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTv2.h
Updated comments for Doxygen
[u/mrichter/AliRoot.git] / START / AliSTARTv2.h
1 #ifndef STARTV2_H
2 #define STARTV2_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////
9 //  Manager and hits classes for set:START     //
10 ////////////////////////////////////////////////
11  
12 #include "AliSTART.h"
13  
14 class AliSTARTv2 : public AliSTART {
15   
16 public:
17   AliSTARTv2() {};
18   AliSTARTv2(const char *name, const char *title);
19   virtual       ~AliSTARTv2() {}
20   virtual void   CreateGeometry();
21   virtual void   CreateMaterials();
22   virtual void   DrawModule() const;
23   virtual void   Init();
24   virtual Int_t  IsVersion() const {return 0;}
25   virtual void   StepManager();
26   virtual void SetHitsAddressBranch(TBranch *b1,TBranch *b2)
27     {b1->SetAddress(&fHits); b2->SetAddress(&fPhotons);}
28    
29 protected:
30    Int_t fIdSens1; // Sensetive volume  in START
31  
32   ClassDef(AliSTARTv2, 1)  //Class for START version 0
33 };
34
35 #endif
36
37