]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDhit.h
Updated version (Zubayer)
[u/mrichter/AliRoot.git] / PMD / AliPMDhit.h
CommitLineData
895a906e 1#ifndef ALIPMDHIT_H
2#define ALIPMDHIT_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6////////////////////////////////////////////////
7// hits classes for set:PMD //
8////////////////////////////////////////////////
9
10#include "AliHit.h"
11#include "Riostream.h"
12
13class TClonesArray;
14
15class AliPMDhit : public AliHit {
16
17 public:
245bd3b0 18 AliPMDhit();
895a906e 19 AliPMDhit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits);
245bd3b0 20 AliPMDhit(AliPMDhit* oldhit);
895a906e 21 virtual ~AliPMDhit() {}
245bd3b0 22 Int_t GetVolume(Int_t i) const {return fVolume[i];}
23 Float_t GetEnergy() const {return fEnergy;}
895a906e 24 int operator == (AliPMDhit &cell) const;
245bd3b0 25 AliPMDhit operator + (AliPMDhit &cell) {
895a906e 26 fEnergy+=cell.GetEnergy();
27 return *this;
28 }
245bd3b0 29 void Print(Option_t *) const {
f117e3aa 30 printf("PMD Cell %d %d %d %d %d %d\n Primary %d - Energy %f\n",
245bd3b0 31 fVolume[0],fVolume[1],fVolume[2],fVolume[3],
32 fVolume[7],fVolume[8],fTrack,fEnergy);
895a906e 33 }
34
35 protected:
f117e3aa 36 Int_t fVolume[10]; //array of volumes
245bd3b0 37 Float_t fEnergy; //Total energy deposited in eV
895a906e 38
245bd3b0 39 ClassDef(AliPMDhit,4) //Hits object for set:PMD
895a906e 40};
41#endif