X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TRD%2FAliTRDhit.cxx;h=f1f77eaca2817c53c336a5daa6ed7b42488624d6;hb=de48ca261a2f46225274fb484cf051966a013037;hp=b26fccddcac96d643455c0dab9b5378b00c27169;hpb=6f1e466d6db177aa095cc30f57958d5e62389e1c;p=u%2Fmrichter%2FAliRoot.git diff --git a/TRD/AliTRDhit.cxx b/TRD/AliTRDhit.cxx index b26fccddcac..f1f77eaca28 100644 --- a/TRD/AliTRDhit.cxx +++ b/TRD/AliTRDhit.cxx @@ -15,6 +15,12 @@ /* $Log$ +Revision 1.3 2000/06/07 16:25:37 cblume +Try to remove compiler warnings on Sun and HP + +Revision 1.2 2000/05/08 16:17:27 cblume +Merge TRD-develop + Revision 1.1.2.1 2000/05/08 14:48:31 cblume AliTRDhit class now in separate files @@ -29,9 +35,18 @@ AliTRDhit class now in separate files #include "AliTRDhit.h" ClassImp(AliTRDhit) - + //_____________________________________________________________________________ -AliTRDhit::AliTRDhit(Int_t shunt, Int_t track, Int_t det, Float_t *hits) +AliTRDhit::AliTRDhit():AliHit() +{ + // + // AliTRDhit default constructor + // + +} + +//_____________________________________________________________________________ +AliTRDhit::AliTRDhit(Int_t shunt, Int_t track, Int_t *det, Float_t *hits) :AliHit(shunt, track) { // @@ -39,7 +54,7 @@ AliTRDhit::AliTRDhit(Int_t shunt, Int_t track, Int_t det, Float_t *hits) // // Store volume hierarchy - fDetector = det; + fDetector = det[0]; // Store position and charge fX = hits[0]; @@ -48,3 +63,12 @@ AliTRDhit::AliTRDhit(Int_t shunt, Int_t track, Int_t det, Float_t *hits) fQ = hits[3]; } + +//_____________________________________________________________________________ +AliTRDhit::~AliTRDhit() +{ + // + // AliTRDhit destructor + // + +}