ACTARSim
ACTAR TPC Simulation Reference Guide
ACTARSim Home Page
Main Page
Related Pages
All Classes
Files
Release Notes
File List
File Members
src
ActarSimSilHit.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 ActarSimSilHit
11
/// A Silicon hit
12
/////////////////////////////////////////////////////////////////
13
14
#include "
ActarSimSilHit.hh
"
15
#include "G4ios.hh"
16
#include "globals.hh"
17
18
ClassImp
(
ActarSimSilHit
)
19
20
//////////////////////////////////////////////////////////////////
21
/// Constructor with initialization to zero
22
ActarSimSilHit
::
ActarSimSilHit
(){
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
45
ActarSimSilHit::~ActarSimSilHit
(){
46
}
47
48
//////////////////////////////////////////////////////////////////
49
/// Printing data information. Not implemented yet.
50
void
ActarSimSilHit::print
(
void
){
51
}
ActarSimSilHit.hh
ClassImp
ClassImp(ActarSimSilHit) ActarSimSilHit
Constructor with initialization to zero.
Definition:
ActarSimSilHit.cc:18
ActarSimSilHit::print
void print(void)
Printing data information. Not implemented yet.
Definition:
ActarSimSilHit.cc:50
ActarSimSilHit::~ActarSimSilHit
~ActarSimSilHit()
Destructor, nothing to do.
Definition:
ActarSimSilHit.cc:45
ActarSimSilHit
Definition:
ActarSimSilHit.hh:17