]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARThit.h
update info about cvs installation using cvs account
[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 "AliDetector.h"
12 #include "AliHit.h"
13  
14 class AliSTARThit : public AliHit {
15 public:
16   Int_t      fVolume;   //T0 arm mark
17   Int_t      fPmt;      //PMT number in the arm  
18   Int_t      fParticle; //Primary particle ID
19   Float_t    fEdep;     //Energy deposition
20   Float_t    fEtot;     //Energy of primary particle at the entrance to radiator 
21   Float_t    fTime;     //Primary particle TOF 
22  
23 public:
24    AliSTARThit(){}//Empty ctor
25    AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
26    virtual ~AliSTARThit(){}//Empty virtual dtor
27   
28    ClassDef(AliSTARThit,1)  //Hits for detector START
29 };
30
31
32 #endif//AliSTARThit_H