]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDCHit.cxx
AliESDtrackCuts used for single track selection
[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 //
20 //              Hits classes for ZDC                  
21 //
22 // **************************************************************
23
24 #include "AliZDCHit.h"
25
26 ClassImp(AliZDCHit)
27   
28 //_____________________________________________________________________________
29 AliZDCHit::AliZDCHit() :
30 //  AliHit(shunt, track),
31   fPrimKinEn(0.),
32   fXImpact(0.),
33   fYImpact(0.),
34   fSFlag(0),
35   fLightPMQ(0.),
36   fLightPMC(0.),
37   fEnergy(0.), 
38   fPDGCode(0)
39
40 {
41   //
42   // Default constructor
43   //
44   for(Int_t i=0; i<2; i++) fVolume[i] = 0;
45 }
46
47 //_____________________________________________________________________________
48 AliZDCHit::AliZDCHit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits) :
49   AliHit(shunt, track),
50   fPrimKinEn(hits[3]),
51   fXImpact(hits[4]),
52   fYImpact(hits[5]),
53   fSFlag(hits[6]),
54   fLightPMQ(hits[7]),
55   fLightPMC(hits[8]),
56   fEnergy(hits[9]), 
57   fPDGCode((Int_t) hits[10])
58
59 {
60   //
61   // Standard constructor
62   //
63   Int_t i;
64   for(i=0; i<2; i++) fVolume[i] = vol[i];
65   fX            = hits[0];
66   fY            = hits[1];
67   fZ            = hits[2];
68 }
69   
70 //_____________________________________________________________________________
71 AliZDCHit::AliZDCHit(const AliZDCHit &oldhit) :
72   AliHit(0,oldhit.GetTrack()),
73   fPrimKinEn(oldhit.GetPrimKinEn()),
74   fXImpact(oldhit.GetXImpact()),  
75   fYImpact(oldhit.GetYImpact()),  
76   fSFlag(oldhit.GetSFlag()),
77   fLightPMQ(oldhit.GetLightPMQ()), 
78   fLightPMC(oldhit.GetLightPMC()),
79   fEnergy(oldhit.GetEnergy()),
80   fPDGCode(oldhit.GetPDGCode())
81 {
82   // Copy constructor
83   fX = oldhit.X();
84   fY = oldhit.Y();
85   fZ = oldhit.Z();
86   for(Int_t i=0; i<2; i++) fVolume[i] = oldhit.GetVolume(i);
87 }
88   
89   
90 //_____________________________________________________________________________
91 void AliZDCHit::Print(Option_t *) const 
92 {
93    // Print method
94    printf("\t ZDC HIT: det =  %d tow =  %d track %d pcPDGcode %d\n" 
95           "\t  Primary E = %f, Ximpact = %f, Yimpact = %f, SFlag = %f\n"
96           "\t  PMQLight = %f, PMCLight = %f,  Deposited E = %f\n ", 
97           fVolume[0],fVolume[1],fTrack,fPDGCode,fPrimKinEn,fXImpact,fYImpact,
98           fSFlag,fLightPMQ,fLightPMC,fEnergy);
99 }