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

Last change on this file since 1202 was 1058, checked in by garnier, 15 years ago

file release beta

File size: 3.1 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.13 2007/03/11 07:19:06 kurasige Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
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  fpTouchable(0), fpMaterial(0), fpMaterialCutsCouple(0), fpSensitiveDetector(0),
52  fpProcessDefinedStep(0), fCharge(0.)
53{
54}
55
56//////////////////////////
57G4StepPoint::G4StepPoint(const G4StepPoint &right):
58//////////////////////////
59  fPosition(right.fPosition),
60  fGlobalTime(right.fGlobalTime),
61  fLocalTime(right.fLocalTime),
62  fProperTime(right.fProperTime),
63  fMomentumDirection(right.fMomentumDirection),
64  fKineticEnergy(right.fKineticEnergy),
65  fVelocity(right.fVelocity),
66  fpTouchable(right.fpTouchable),
67  fpMaterial(right.fpMaterial),
68  fpMaterialCutsCouple(right.fpMaterialCutsCouple),
69  fpSensitiveDetector(right.fpSensitiveDetector),
70  fSafety(right.fSafety),
71  fPolarization(right.fPolarization),
72  fStepStatus(right.fStepStatus),
73  fpProcessDefinedStep(right.fpProcessDefinedStep),
74  fMass(right.fMass),
75  fCharge(right.fCharge),
76  fMagneticMoment(right.fMagneticMoment),
77  fWeight(right.fWeight)
78{}
Note: See TracBrowser for help on using the repository browser.