]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARThit.h
New AliSTART
[u/mrichter/AliRoot.git] / START / AliSTARThit.h
CommitLineData
971579f6 1#ifndef STARTHIT_H
2#define STARTHIT_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////////////////////////////////////////////////
9// Manager and hits classes for set:START //
10////////////////////////////////////////////////
11
12#include "AliDetector.h"
13#include "AliHit.h"
14
15class AliSTARThit : public AliHit {
16public:
17 Int_t fVolume;
18 Int_t fPmt;
19 Int_t fParticle; //Particle identificator
20 Float_t fEdep; //Energy deposition
21 Float_t fEtot; //Energy of particle
22 Float_t fTime; //Time of flight
23
24public:
25 AliSTARThit() {}
26 AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
27 virtual ~AliSTARThit() {}
28
29 ClassDef(AliSTARThit,1) //Hits for detector START
30};
31#endif