source: trunk/source/processes/hadronic/models/photolepton_hadron/muon_nuclear/include/G4MuonNucleusInteractionModel.hh

Last change on this file was 1228, checked in by garnier, 14 years ago

update geant4.9.3 tag

File size: 3.7 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// G4MuonNucleusInteractionModel.hh
27//
28//     M.Takahata (Makoto.Takahata@cern.ch)
29//
30// -----------------------------------------------------------------------
31//  This class is the translation of Geant3/Gheisha routine GMUNU + GMUSIG
32//  , which calculate the final state of outgoing muon and force cascade
33//  through pion-Nucleus inelastic scattering.
34// -----------------------------------------------------------------------
35
36#ifndef G4MuonNucleusInteractionModel_h
37#define G4MuonNucleusInteractionModel_h 1
38
39#include "G4LeptonHadronInteractionModel.hh"
40#include "G4DynamicParticle.hh"
41#include "G4ParticleTypes.hh"
42#include "G4PhysicsLogVector.hh"
43#include "G4LEPionPlusInelastic.hh"
44#include "G4LEPionMinusInelastic.hh"
45#include "G4HEPionPlusInelastic.hh"
46#include "G4HEPionMinusInelastic.hh"
47#include "G4HadFinalState.hh"
48
49
50  class G4MuonNucleusInteractionModel : public G4LeptonHadronInteractionModel
51  {
52    public:
53
54      G4MuonNucleusInteractionModel();
55      virtual ~G4MuonNucleusInteractionModel();
56
57      void makePhysicsVector();
58      G4double computeMicroscopicCrossSection(const G4Track &muonTrack);
59      G4VParticleChange* applyInteractionModel(const G4Track &muonTrack, 
60                                               G4Nucleus &targetNucleus);
61
62    private:
63
64      // member functions
65      void invokePionNucleus(const G4Track &pionTrack,
66                             G4Nucleus &targetNucleus);
67      G4double computeDifferentialCrossSection
68        (G4double initialEnergy, G4double finalEnergy, G4double cosTheta);
69
70      // for physics vector
71      static G4double tetal[35], xeml[23];
72      G4PhysicsLogVector *theCoefficientVector;
73      G4int    Nbin;
74      G4double kEmin, kEmax;
75
76      // kinematic
77      G4double cosTheta;
78      G4HadFinalState  * pionChange;
79
80      // pi-N models
81      G4double cascadeModelMarginalEnergy;
82      G4LEPionPlusInelastic*  LEPionPlusInelastic;
83      G4LEPionMinusInelastic* LEPionMinusInelastic;
84      G4HEPionPlusInelastic*  HEPionPlusInelastic;
85      G4HEPionMinusInelastic* HEPionMinusInelastic;
86  };
87
88#endif
Note: See TracBrowser for help on using the repository browser.