]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCHit.cxx
Using TMath::Abs instead of fabs
[u/mrichter/AliRoot.git] / ZDC / AliZDCHit.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 ////////////////////////////////////////////////
19 //  Hits classes for set ZDC                  //
20 ////////////////////////////////////////////////
21
22
23 #include "AliZDCHit.h"
24
25 ClassImp(AliZDCHit)
26   
27 //_____________________________________________________________________________
28 AliZDCHit::AliZDCHit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits):
29   AliHit(shunt, track)
30 {
31   //
32   // Add a ZDC hit
33   //
34   Int_t i;
35   for(i=0; i<2; i++) {
36      fVolume[i] = vol[i];
37   }
38   fX            = hits[0];
39   fY            = hits[1];
40   fZ            = hits[2];
41   fPrimKinEn    = hits[3];
42   fXImpact      = hits[4];
43   fYImpact      = hits[5];
44   fSFlag        = hits[6];
45   fLightPMQ     = hits[7];
46   fLightPMC     = hits[8];
47   fEnergy       = hits[9]; 
48   
49 }