3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
6 ////////////////////////////////////////////////
7 // hits classes for set:PMD //
8 ////////////////////////////////////////////////
11 #include "Riostream.h"
15 class AliPMDhit : public AliHit {
19 AliPMDhit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
20 AliPMDhit(AliPMDhit* oldhit);
21 virtual ~AliPMDhit() {}
22 Int_t GetVolume(Int_t i) const {return fVolume[i];}
23 Float_t GetEnergy() const {return fEnergy;}
24 Float_t GetTime() const {return fTime;}
25 Int_t operator == (AliPMDhit &cell) const;
26 AliPMDhit operator + (AliPMDhit &cell) {
27 fEnergy+=cell.GetEnergy();
30 void Print(Option_t *) const {
31 printf("PMD Cell %d %d %d %d %d %d\n Primary %d - Energy %f\n",
32 fVolume[0],fVolume[1],fVolume[2],fVolume[3],
33 fVolume[4],fVolume[5],fTrack,fEnergy);
37 Int_t fVolume[6]; //array of volumes
38 Float_t fEnergy; //Total energy deposited in eV
39 Float_t fTime; //time information for the event (pile-up cal)
41 ClassDef(AliPMDhit,6) //Hits object for set:PMD