]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARThit.h
Mostly minor style modifications to be ready for cloning with EMCAL
[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:
c30bf53a 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
971579f6 21
22public:
c30bf53a 23 AliSTARThit(){}//Empty ctor
24 AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
25 virtual ~AliSTARThit(){}//Empty virtual dtor
971579f6 26
c30bf53a 27 ClassDef(AliSTARThit,1) //Hits for detector START
971579f6 28};
c30bf53a 29
30
f3ed336b 31#endif//ALISTARThit_H