]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARThit.h
Updated START code from Alla
[u/mrichter/AliRoot.git] / START / AliSTARThit.h
1 #ifndef ALISTARThit_H
2 #define ALISTARThit_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 //  Manager and hits classes for set:START     //
9 ////////////////////////////////////////////////
10  
11 #include "AliHit.h"
12  
13 class AliSTARThit : public AliHit {
14 public:
15   Int_t      fVolume;   //T0 arm mark
16   Int_t      fPmt;      //PMT number in the arm  
17   Int_t      fParticle; //Primary particle ID
18   Float_t    fEdep;     //Energy deposition
19   Float_t    fEtot;     //Energy of primary particle at the entrance to radiator 
20   Float_t    fTime;     //Primary particle TOF 
21  
22 public:
23    AliSTARThit(){}//Empty ctor
24    AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
25    virtual ~AliSTARThit(){}//Empty virtual dtor
26   
27    ClassDef(AliSTARThit,1)  //Hits for detector START
28 };
29
30
31 #endif//ALISTARThit_H