source: trunk/source/physics_lists/builders/src/G4QNeutrinoPhysics.cc@ 1214

Last change on this file since 1214 was 1203, checked in by garnier, 16 years ago

update CVS

File size: 5.0 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// $Id: G4QNeutrinoPhysics.cc,v 1.2 2009/11/16 19:12:10 mkossov Exp $
27// GEANT4 tag $Name: geant4-09-03-cand-03 $
28//
29//---------------------------------------------------------------------------
30//
31// ClassName: G4QNeutrinoPhysics
32//
33// Author: 2009 M. V. Kosov
34//
35// Modified:
36//
37//----------------------------------------------------------------------------
38//
39
40#include "G4QNeutrinoPhysics.hh"
41
42G4QNeutrinoPhysics::G4QNeutrinoPhysics(const G4String& name):
43 G4VPhysicsConstructor(name), wasBuilt(false), nuEleActivated(false),
44 nuMuoActivated(false), nuTauActivated(false), nuEleOn(false),
45 nuMuoOn(false), nuTauOn(false), nuNucBias(1.)
46{
47 theMessenger = G4QMessenger::GetPointer();
48 theMessenger->Add(this);
49}
50
51G4QNeutrinoPhysics::~G4QNeutrinoPhysics()
52{
53 if(wasBuilt) delete inelastic;
54}
55
56void G4QNeutrinoPhysics::ConstructParticle()
57{
58 G4NeutrinoE::NeutrinoE();
59 G4AntiNeutrinoE::AntiNeutrinoE();
60 G4NeutrinoMu::NeutrinoMu();
61 G4AntiNeutrinoMu::AntiNeutrinoMu();
62 G4NeutrinoTau::NeutrinoTau();
63 G4AntiNeutrinoTau::AntiNeutrinoTau();
64}
65
66void G4QNeutrinoPhysics::SetNuElNuclearOnOff(G4String& newSwitch)
67{
68 if(wasBuilt) G4cout<<"G4QNeutrinoPhysics:No, processes are already builded!"<<G4endl;
69 else if(newSwitch == "on" || newSwitch == "ON" || newSwitch == "On") nuEleOn = true;
70 else nuEleOn = false;
71}
72
73void G4QNeutrinoPhysics::SetNuMuNuclearOnOff(G4String& newSwitch)
74{
75 if(wasBuilt) G4cout<<"G4QNeutrinoPhysics:No, processes are already builded!"<<G4endl;
76 else if(newSwitch == "on" || newSwitch == "ON" || newSwitch == "On") nuMuoOn = true;
77 else nuMuoOn = false;
78}
79
80void G4QNeutrinoPhysics::SetNuTauNuclearOnOff(G4String& newSwitch)
81{
82 if(wasBuilt) G4cout<<"G4QNeutrinoPhysics:No, processes are already builded!"<<G4endl;
83 else if(newSwitch == "on" || newSwitch == "ON" || newSwitch == "On") nuTauOn = true;
84 else nuTauOn = false;
85}
86
87void G4QNeutrinoPhysics::SetNuNuclearBias(G4double newValue)
88{
89 if(wasBuilt) G4cout<<"G4QNeutrinoPhysics:No, processes are already builded!"<<G4endl;
90 else nuNucBias = newValue;
91}
92
93void G4QNeutrinoPhysics::ConstructProcess()
94{
95 if(wasBuilt) return;
96 wasBuilt = true;
97
98 inelastic = new G4QInelastic("neutrinoNuclear");
99 inelastic->SetWeakNucBias(nuNucBias); // enough only once (static)
100 if (nuEleOn) BuildNuEleNuclear();
101 if (nuMuoOn) BuildNuMuoNuclear();
102 if (nuTauOn) BuildNuTauNuclear();
103}
104
105void G4QNeutrinoPhysics::BuildNuEleNuclear()
106{
107 if(nuEleActivated) return;
108 nuEleActivated = true;
109 G4ProcessManager * pManager = 0;
110
111 pManager = G4NeutrinoE::NeutrinoE()->GetProcessManager();
112 pManager->AddDiscreteProcess(inelastic);
113
114 pManager = G4AntiNeutrinoE::AntiNeutrinoE()->GetProcessManager();
115 pManager->AddDiscreteProcess(inelastic);
116}
117
118void G4QNeutrinoPhysics::BuildNuMuoNuclear()
119{
120 if(nuMuoActivated) return;
121 nuMuoActivated = true;
122 G4ProcessManager * pManager = 0;
123
124 pManager = G4NeutrinoMu::NeutrinoMu()->GetProcessManager();
125 pManager->AddDiscreteProcess(inelastic);
126
127 pManager = G4AntiNeutrinoMu::AntiNeutrinoMu()->GetProcessManager();
128 pManager->AddDiscreteProcess(inelastic);
129}
130
131void G4QNeutrinoPhysics::BuildNuTauNuclear()
132{
133 if(nuTauActivated) return;
134 nuTauActivated = true;
135 G4ProcessManager * pManager = 0;
136
137 pManager = G4NeutrinoTau::NeutrinoTau()->GetProcessManager();
138 pManager->AddDiscreteProcess(inelastic);
139
140 pManager = G4AntiNeutrinoTau::AntiNeutrinoTau()->GetProcessManager();
141 pManager->AddDiscreteProcess(inelastic);
142}
Note: See TracBrowser for help on using the repository browser.