]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARThit.h
Removal of useless dependencies via forward declarations
[u/mrichter/AliRoot.git] / START / AliSTARThit.h
CommitLineData
ef51244a 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
11#include "AliDetector.h"
12#include "AliHit.h"
13
14class AliSTARThit : public AliHit {
15public:
c30bf53a 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
971579f6 22
23public:
c30bf53a 24 AliSTARThit(){}//Empty ctor
25 AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
26 virtual ~AliSTARThit(){}//Empty virtual dtor
971579f6 27
c30bf53a 28 ClassDef(AliSTARThit,1) //Hits for detector START
971579f6 29};
c30bf53a 30
31
32#endif//AliSTARThit_H