Ignore:
Timestamp:
Jan 11, 2010, 3:22:34 PM (16 years ago)
Author:
garnier
Message:

update from CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/geometry/magneticfield/test/NTST/src/NTSTDetectorConstruction.cc

    r1199 r1231  
    5353#include "G4RKG3_Stepper.hh"
    5454#include "G4HelixMixedStepper.hh"
     55#include "G4NystromRK4.hh"
    5556
    5657#include "G4DELPHIMagField.hh"
     
    210211  pEquation = new G4Mag_UsualEqRhs( &field);
    211212 
    212   // pStepper =
    213   //           new G4ClassicalRK4( pEquation );
    214   //           new G4RKG3_Stepper( fEquation );  // Nystrom, like Geant3
    215   // pStepper= new G4SimpleRunge( pEquation );
    216   // pStepper= new G4CashKarpRKF45( pEquation );
    217   pStepper= new G4HelixMixedStepper( pEquation );
     213  // pStepper =  
     214  //           new G4ClassicalRK4( pEquation ); G4cout << "Stepper is " << "ClassicalRK4" << G4endl;
     215  //           new G4RKG3_Stepper( pEquation );  // Nystrom, like Geant3
     216  // pStepper= new G4SimpleRunge( pEquation ); G4cout << "Stepper is " << "CashKarpRKF45" << G4endl;
     217  // pStepper= new G4CashKarpRKF45( pEquation ); G4cout << "Stepper is " << "CashKarpRKF45" << G4endl;
     218  // pStepper= new G4HelixMixedStepper( pEquation ); G4cout << "Stepper is " << "HelixMixed" << G4endl;
    218219  // pStepper=  StepperFactory::CreateStepper( order );
    219220
    220   G4cout << "Stepper is "
    221     //   << "CashKarpRKF45" << G4endl;
     221  pStepper= new G4NystromRK4( pEquation ); G4cout << "Stepper is " << "NystromRK4" << G4endl;
     222
     223    // G4cout << "Stepper is " << "CashKarpRKF45" << G4endl;
    222224    //   << "ClassicalRK4" << G4endl;
    223         << " G4HelixMixedStepper " << G4endl;
     225    //  << " G4HelixMixedStepper " << G4endl;
    224226
    225227  // globalFieldManager->CreateChordFinder( (G4MagneticField *)&field );
Note: See TracChangeset for help on using the changeset viewer.