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/tracking/src/G4UserSteppingAction.cc

    r1337 r1340  
    2525//
    2626//
    27 // $Id: G4UserSteppingAction.cc,v 1.10 2006/06/29 21:16:17 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     27// $Id: G4UserSteppingAction.cc,v 1.11 2010/07/19 13:41:21 gcosmo Exp $
     28// GEANT4 tag $Name: tracking-V09-03-08 $
    2929//
    3030// ---------------------------------------------------------------
     
    5050G4UserSteppingAction::G4UserSteppingAction()
    5151/////////////////////////////////////////////////////////
     52   : fpSteppingManager(0)
    5253{
    5354 if(!(G4ParticleTable::GetParticleTable()->GetReadiness()))
     
    5657   msg =  " You are instantiating G4UserSteppingAction BEFORE your\n";
    5758   msg += "G4VUserPhysicsList is instantiated and assigned to G4RunManager.\n";
    58    msg += " Such an instantiation is prohibited by Geant4 version 8.0. To fix this problem,\n";
     59   msg += " Such an instantiation is prohibited since Geant4 version 8.0. To fix this problem,\n";
    5960   msg += "please make sure that your main() instantiates G4VUserPhysicsList AND\n";
    6061   msg += "set it to G4RunManager before instantiating other user action classes\n";
    6162   msg += "such as G4UserSteppingAction.";
    6263   G4Exception("G4UserSteppingAction::G4UserSteppingAction()",
    63               "Tracking0002",FatalException,msg);
     64               "Tracking0002", FatalException, msg);
    6465 }
    6566}
     
    7778  fpSteppingManager = pValue;
    7879
    79 
    80 
    81 
    82 
Note: See TracChangeset for help on using the changeset viewer.