X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=START%2FAliSTARThit.cxx;h=169d5d8a99765c5016b83195b61d057b397724a1;hb=293b16692785794a60bca70d9e3fa92d8e7a1a6d;hp=9d8f8c08548553723eb9d5d8fbb6da015eb20793;hpb=971579f638074c801f19673352e1dc1dd560c1c4;p=u%2Fmrichter%2FAliRoot.git diff --git a/START/AliSTARThit.cxx b/START/AliSTARThit.cxx index 9d8f8c08548..169d5d8a997 100644 --- a/START/AliSTARThit.cxx +++ b/START/AliSTARThit.cxx @@ -12,32 +12,29 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ - /* $Log$ -*/ +Revision 1.1.1.1 2000/02/15 15:20:19 kir +Initial import to mni CVS +*/ #include "AliSTARThit.h" ClassImp(AliSTARThit) - -//_____________________________________________________________________________ + AliSTARThit::AliSTARThit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits): AliHit(shunt, track) { - // - // Add a START hit - // +//Normal START hit ctor - fVolume = vol[0]; - fPmt=vol[1]; - fX=hits[0]; - fY=hits[1]; - fZ=hits[2]; - fEdep=hits[3]; - fEtot=hits[4]; - fParticle=Int_t (hits[5]); - fTime=hits[6]; - - // for (Int_t i=0; i<=6; i++) {printf("Hits up %f\n",hits[i]);} + fVolume = vol[0]; + fPmt=vol[1]; + fX=hits[0]; + fY=hits[1]; + fZ=hits[2]; + fEdep=hits[3]; + fEtot=hits[4]; + fParticle=Int_t (hits[5]); + fTime=hits[6]; } +