Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4GammaNuclearReaction.cc
Go to the documentation of this file.
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 // Short description: The CHIPS model provides the G4QHadronVector
27 // output, which is converted to the G4 particle-singletons
28 // --------------------------------------------------------------------
29 //
30 // Created: J.P. Wellisch, 2000/08/18
31 // 01.09.2008 V.Ivanchenko
32 //
33 
35 #include "G4Gamma.hh"
36 #include "G4Nucleus.hh"
37 #include "G4HadFinalState.hh"
38 #include "G4HadProjectile.hh"
39 #include <iostream>
40 
41 
44 {
45  Description();
46 }
47 
48 
50 {}
51 
52 
54 {
55  char* dirName = getenv("G4PhysListDocDir");
56  if (dirName) {
57  std::ofstream outFile;
58  G4String outFileName = GetModelName() + ".html";
59  G4String pathName = G4String(dirName) + "/" + outFileName;
60 
61  outFile.open(pathName);
62  outFile << "<html>\n";
63  outFile << "<head>\n";
64 
65  outFile << "<title>Description of CHIPS Gamma Nuclear Model</title>\n";
66  outFile << "</head>\n";
67  outFile << "<body>\n";
68 
69  outFile << "G4GammaNuclearReaction handles inelastic gamma scattering\n"
70  << "using the Chiral Invariant Phase Space (CHIPS) model of\n"
71  << "M. Kossov. The incident gamma is interacted directly with\n"
72  << "nucleons and clusters of nucleons within the target by\n"
73  << "forming quasmons (or generalized excited hadrons) which then\n"
74  << "decay into final state hadrons. The model is valid for\n"
75  << "incident gamma energies up to 3.5 GeV.\n";
76 
77  outFile << "</body>\n";
78  outFile << "</html>\n";
79  outFile.close();
80  }
81 }
82 
83 
85  const G4HadProjectile& aTrack,
86  G4Nucleus& aTargetNucleus)
87 {
88  if(aTrack.GetDefinition() != G4Gamma::GammaDefinition())
89  {
90  throw G4HadronicException(__FILE__, __LINE__,
91  "Called G4GammaNuclearReaction for particle other than gamma");
92  }
93  return theModel.ApplyYourself(aTrack, aTargetNucleus);
94 }
95