]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARThit.h
Preliminary PID for the ITS tracker added (Yu.Belikov)
[u/mrichter/AliRoot.git] / START / AliSTARThit.h
CommitLineData
f3ed336b 1#ifndef ALISTARThit_H
2#define ALISTARThit_H
971579f6 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
971579f6 7////////////////////////////////////////////////
8// Manager and hits classes for set:START //
9////////////////////////////////////////////////
10
971579f6 11#include "AliHit.h"
12
13class AliSTARThit : public AliHit {
14public:
0b73602e 15 AliSTARThit(){}//Empty ctor
16 AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
17 virtual ~AliSTARThit(){}//Empty virtual dtor
18 Int_t Volume() const {return fVolume;}
19 Int_t Pmt() const {return fPmt;}
20 Float_t Particle() const {return fParticle;}
21 Float_t Edep() const {return fEdep;}
22 Float_t Etot() const {return fEtot;}
23 Float_t Time() const {return fTime;}
24
25private:
c30bf53a 26 Int_t fVolume; //T0 arm mark
27 Int_t fPmt; //PMT number in the arm
28 Int_t fParticle; //Primary particle ID
29 Float_t fEdep; //Energy deposition
30 Float_t fEtot; //Energy of primary particle at the entrance to radiator
31 Float_t fTime; //Primary particle TOF
971579f6 32
971579f6 33
c30bf53a 34 ClassDef(AliSTARThit,1) //Hits for detector START
971579f6 35};
c30bf53a 36
37
f3ed336b 38#endif//ALISTARThit_H