source: trunk/source/processes/electromagnetic/lowenergy/test/processTest/src/G4TestFactory.cc@ 1201

Last change on this file since 1201 was 1199, checked in by garnier, 16 years ago

nvx fichiers dans CVS

File size: 3.2 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: G4TestFactory.cc,v 1.4 2006/06/29 19:48:56 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30// Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
31//
32// History:
33// -----------
34// 07 Oct 2001 MGP Created
35//
36// -------------------------------------------------------------------
37
38#include "globals.hh"
39#include "G4TestFactory.hh"
40#include "G4ProcessTest.hh"
41#include "G4ComptonTest.hh"
42#include "G4GammaConversionTest.hh"
43#include "G4PhotoelectricTest.hh"
44#include "G4RayleighTest.hh"
45#include "G4BremsstrahlungTest.hh"
46#include "G4eIonisationTest.hh"
47
48G4ProcessTest* G4TestFactory::createTestProcess(const G4String& type,
49 const G4String& category,
50 G4bool isPolarised)
51{
52 G4ProcessTest* test = 0;
53
54 if (type == "compton")
55 {
56 test = new G4ComptonTest(category,isPolarised);
57 G4cout << "Testing Compton scattering" << G4endl;
58 }
59 if (type == "conversion")
60 {
61 test = new G4GammaConversionTest(category,isPolarised);
62 G4cout << "Testing gamma conversion" << G4endl;
63 }
64 if (type == "photoelectric")
65 {
66 test = new G4PhotoelectricTest(category);
67 G4cout << "Testing photoelectric effect" << G4endl;
68 }
69 if (type == "rayleigh")
70 {
71 test = new G4RayleighTest(category,isPolarised);
72 G4cout << "Testing Rayleigh scattering" << G4endl;
73 }
74 if (type == "bremsstrahlung")
75 {
76 test = new G4BremsstrahlungTest(category);
77 G4cout << "Testing Bremsstrahlung" << G4endl;
78 }
79 if (type == "ionisation")
80 {
81 test = new G4eIonisationTest(category);
82 G4cout << "Testing electron ionisation" << G4endl;
83 }
84 return test;
85}
86
87
88
Note: See TracBrowser for help on using the repository browser.