// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: processTest.cc,v 1.13 2006/06/29 19:48:14 gunter Exp $ // GEANT4 tag $Name: geant4-09-03-cand-01 $ // // ------------------------------------------------------------------- // // File name: processTest // // Author: Maria Grazia Pia // // Creation date: 1 May 2001 // // Modifications: // // ------------------------------------------------------------------- #include "globals.hh" #include "G4ios.hh" #include #include #include "G4VProcess.hh" #include "G4Step.hh" #include "G4Track.hh" #include "G4ProcessTest.hh" #include "G4TestSetup.hh" #include "G4MaterialSetup.hh" #include "G4Material.hh" #include "G4ParticleDefinition.hh" #include "G4TestFactory.hh" #include "G4ProcessTestAnalysis.hh" #include "G4TestUI.hh" int main() { // Configuration of the test set-up G4MaterialSetup materialSetup; materialSetup.makeMaterials(); G4TestUI ui; ui.configure(); // Initialise the analysis G4ProcessTestAnalysis* analyser = G4ProcessTestAnalysis::getInstance(); G4String store = ui.getProcessCategory() + "_" + ui.getProcessType(); analyser->book(store); const G4Material* material = ui.getSelectedMaterial(); const G4ParticleDefinition* definition = ui.getParticleDefinition(); G4double eMin = ui.getMinEnergy(); G4double eMax = ui.getMaxEnergy(); G4TestSetup setup(material,definition,eMin,eMax); setup.makeGeometry(); // Configuration of the physics testing G4TestFactory testSelector; G4String type = ui.getProcessType(); G4String category = ui.getProcessCategory(); G4bool polarised = ui.getPolarisationSelection(); G4ProcessTest* test = testSelector.createTestProcess(type,category,polarised); test->buildTables(category,polarised); // Testing const G4String topic = ui.getTestTopic(); G4int nIterations = ui.getNumberOfIterations(); for (G4int iter=0; iterpostStepTest(*track,*step); else if (topic == "along") test->alongStepTest(*track,*step); } analyser->finish(); G4cout << "End of the test" << G4endl; }