Ignore:
Timestamp:
Nov 5, 2010, 4:08:39 PM (15 years ago)
Author:
garnier
Message:

update ti head

Location:
trunk/examples/extended/electromagnetic/TestEm8/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/extended/electromagnetic/TestEm8/include/PhysicsList.hh

    r1337 r1342  
    2424// ********************************************************************
    2525//
     26// $Id: PhysicsList.hh,v 1.5 2010/09/08 09:12:10 vnivanch Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2628//
    27 // $Id: PhysicsList.hh,v 1.4 2010/04/13 08:12:23 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     29//---------------------------------------------------------------------------
    2930//
    30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     31// ClassName:   PhysicsList
    3132//
    32 // 14.10.02 (V.Ivanchenko) provide modular list on base of old PhysicsList
     33// Description: EM physics with a possibility to add PAI model
    3334//
    34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    35 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     35// Author:      V.Ivanchenko 01.09.2010
     36//
     37//----------------------------------------------------------------------------
     38//
    3639
    3740#ifndef PhysicsList_h
     
    5154{
    5255public:
     56
    5357  PhysicsList();
    5458  virtual ~PhysicsList();
     
    6064  void SetCutForElectron(G4double);
    6165  void SetCutForPositron(G4double);
     66  void SetCutForProton(G4double);
    6267       
    6368  void AddPhysicsList(const G4String& name);
    6469  void ConstructProcess();
    6570   
    66   void AddStepMax();       
    67   //StepMax* GetStepMaxProcess() {return stepMaxProcess;};
     71  void AddStepMax();
    6872
    6973private:
     
    7882  G4double cutForElectron;
    7983  G4double cutForPositron;
     84  G4double cutForProton;
    8085
    8186  G4VPhysicsConstructor*  emPhysicsList;
  • trunk/examples/extended/electromagnetic/TestEm8/include/PhysicsListMessenger.hh

    r1337 r1342  
    2525//
    2626//
    27 // $Id: PhysicsListMessenger.hh,v 1.2 2006/06/29 16:59:49 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     27// $Id: PhysicsListMessenger.hh,v 1.3 2010/09/08 09:12:10 vnivanch Exp $
     28// GEANT4 tag $Name: examples-V09-03-09 $
    2929//
     30//---------------------------------------------------------------------------
     31//
     32// ClassName:   PhysicsListMessenger
     33//
     34// Description: EM physics with a possibility to add PAI model
     35//
     36// Author:      V.Ivanchenko 01.09.2010
     37//
     38//----------------------------------------------------------------------------
    3039//
    3140
     
    4251class G4UIcmdWithADoubleAndUnit;
    4352class G4UIcmdWithAString;
     53class G4UIcmdWithAnInteger;
    4454
    4555//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    4757class PhysicsListMessenger: public G4UImessenger
    4858{
    49   public:
     59public:
    5060 
    51     PhysicsListMessenger(PhysicsList* );
    52   ~PhysicsListMessenger();
     61  PhysicsListMessenger(PhysicsList* );
     62  virtual ~PhysicsListMessenger();
    5363   
    54     void SetNewValue(G4UIcommand*, G4String);
     64  void SetNewValue(G4UIcommand*, G4String);
    5565   
    56   private:
     66private:
    5767 
    58     PhysicsList* pPhysicsList;
     68  PhysicsList* pPhysicsList;
    5969   
    60     G4UIcmdWithADoubleAndUnit* gammaCutCmd;
    61     G4UIcmdWithADoubleAndUnit* electCutCmd;
    62     G4UIcmdWithADoubleAndUnit* protoCutCmd;   
    63     G4UIcmdWithADoubleAndUnit* allCutCmd;   
    64     G4UIcmdWithAString*        pListCmd;
     70  G4UIcmdWithADoubleAndUnit* eCmd;
     71  G4UIcmdWithAnInteger*      ebCmd;
     72  G4UIcmdWithAnInteger*      cbCmd;
     73  G4UIcmdWithAString*        pListCmd;
    6574   
    6675};
Note: See TracChangeset for help on using the changeset viewer.