ACTARSim
ACTAR TPC Simulation Reference Guide
ActarSimSilRingHit.cc
Go to the documentation of this file.
1 // - AUTHOR: Hector Alvarez-Pol 04/2008
2 /******************************************************************
3  * Copyright (C) 2005-2016, Hector Alvarez-Pol *
4  * All rights reserved. *
5  * *
6  * License according to GNU LESSER GPL (see lgpl-3.0.txt). *
7  * For the list of contributors see CREDITS. *
8  ******************************************************************/
9 //////////////////////////////////////////////////////////////////
10 /// \class ActarSimSilRingHit
11 /// A Silicon Ring hit
12 /////////////////////////////////////////////////////////////////
13 
14 #include "ActarSimSilRingHit.hh"
15 #include "G4ios.hh"
16 #include "globals.hh"
17 
19 
20 //////////////////////////////////////////////////////////////////
21 /// Constructor with initialization to zero
23  detectorID = 0;
24 
25  xpos=0;
26  ypos=0;
27  zpos=0;
28 
29  time = 0.;
30  energy = 0.;
31 
32  trackID = 0;
33  eventID = 0;
34  runID = 0;
35 
36  particleID = 0;
37  particleCharge = 0;
38  particleMass=0;
39 
40  stepsContributing = 0;
41 }
42 
43 //////////////////////////////////////////////////////////////////
44 /// Destructor, nothing to do
46 }
47 
48 //////////////////////////////////////////////////////////////////
49 /// Printing data information. Not implemented yet.
51 }
ClassImp(ActarSimSilRingHit) ActarSimSilRingHit
Constructor with initialization to zero.
void print(void)
Printing data information. Not implemented yet.
~ActarSimSilRingHit()
Destructor, nothing to do.