source: trunk/source/track/src/G4StepPoint.cc@ 1350

Last change on this file since 1350 was 1340, checked in by garnier, 15 years ago

update ti head

File size: 3.3 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: G4StepPoint.cc,v 1.15 2010/10/30 07:49:09 kurasige Exp $
28// GEANT4 tag $Name: track-V09-03-09 $
29//
30//
31//---------------------------------------------------------------
32//
33// G4StepPoint.cc
34//
35// Description:
36// This class represents information associated with the
37// each end of a Step like the space/time data of the
38// particle.
39//
40// Contact:
41// Questions and comments to this code should be sent to
42// Hisaya Kurashige
43//
44// ---------------------------------------------------------------
45
46#include "G4StepPoint.hh"
47
48//////////////////////////
49G4StepPoint::G4StepPoint()
50//////////////////////////
51 : fGlobalTime(0.), fLocalTime(0.), fProperTime(0.),
52 fKineticEnergy(0.), fVelocity(0.), fpTouchable(0), fpMaterial(0),
53 fpMaterialCutsCouple(0), fpSensitiveDetector(0), fSafety(0.),
54 fStepStatus(fUndefined),fpProcessDefinedStep(0),
55 fMass(0.), fCharge(0.), fMagneticMoment(0.),
56 fWeight(0.)
57{
58}
59
60//////////////////////////
61G4StepPoint::G4StepPoint(const G4StepPoint &right):
62//////////////////////////
63 fPosition(right.fPosition),
64 fGlobalTime(right.fGlobalTime),
65 fLocalTime(right.fLocalTime),
66 fProperTime(right.fProperTime),
67 fMomentumDirection(right.fMomentumDirection),
68 fKineticEnergy(right.fKineticEnergy),
69 fVelocity(right.fVelocity),
70 fpTouchable(right.fpTouchable),
71 fpMaterial(right.fpMaterial),
72 fpMaterialCutsCouple(right.fpMaterialCutsCouple),
73 fpSensitiveDetector(right.fpSensitiveDetector),
74 fSafety(right.fSafety),
75 fPolarization(right.fPolarization),
76 fStepStatus(right.fStepStatus),
77 fpProcessDefinedStep(right.fpProcessDefinedStep),
78 fMass(right.fMass),
79 fCharge(right.fCharge),
80 fMagneticMoment(right.fMagneticMoment),
81 fWeight(right.fWeight)
82{}
Note: See TracBrowser for help on using the repository browser.