Ignore:
Timestamp:
Nov 5, 2010, 3:45:55 PM (14 years ago)
Author:
garnier
Message:

update ti head

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/track/src/G4ParticleChangeForLoss.cc

    r1337 r1340  
    2525//
    2626//
    27 // $Id: G4ParticleChangeForLoss.cc,v 1.17 2009/05/26 13:19:41 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     27// $Id: G4ParticleChangeForLoss.cc,v 1.18 2010/07/21 09:30:15 gcosmo Exp $
     28// GEANT4 tag $Name: track-V09-03-09 $
    2929//
    3030//
     
    5050
    5151G4ParticleChangeForLoss::G4ParticleChangeForLoss()
    52   :G4VParticleChange(), lowEnergyLimit(1.0*eV)
     52  : G4VParticleChange(), currentTrack(0), proposedKinEnergy(0.),
     53    lowEnergyLimit(1.0*eV), currentCharge(0.)
    5354{
    5455  theSteppingControlFlag = NormalCondition;
     
    7071}
    7172
    72 G4ParticleChangeForLoss::G4ParticleChangeForLoss(
    73              const G4ParticleChangeForLoss &right): G4VParticleChange(right)
     73G4ParticleChangeForLoss::
     74G4ParticleChangeForLoss(const G4ParticleChangeForLoss &right)
     75  : G4VParticleChange(right)
    7476{
    7577  if (verboseLevel>1) {
     
    7880  currentTrack = right.currentTrack;
    7981  proposedKinEnergy = right.proposedKinEnergy;
     82  lowEnergyLimit = right.lowEnergyLimit;
    8083  currentCharge = right.currentCharge;
    8184  proposedMomentumDirection = right.proposedMomentumDirection;
     
    115118  G4VParticleChange::DumpInfo();
    116119
    117   G4cout.precision(3);
     120  G4int oldprc = G4cout.precision(3);
    118121  G4cout << "        Charge (eplus)   : "
    119122       << std::setw(20) << currentCharge/eplus
     
    131134       << std::setw(20) << proposedMomentumDirection.z()
    132135       << G4endl;
     136  G4cout.precision(oldprc);
    133137}
    134138
Note: See TracChangeset for help on using the changeset viewer.