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

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

update geant4.9.3 tag

File size: 5.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// $Id: G4QNeutrinoPhysics.cc,v 1.3 2009/11/30 18:44:49 mkossov Exp $
27// GEANT4 tag $Name: geant4-09-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.), inelastic(0)
46{
47  theMessenger = G4QMessenger::GetPointer();
48  theMessenger->Add(this);
49}
50
51G4QNeutrinoPhysics::~G4QNeutrinoPhysics()
52{
53  if(wasBuilt && inelastic) 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  if(nuEleOn || nuMuoOn || nuTauOn)
97  {
98    wasBuilt = true;
99    G4cout<<"Builded=>G4QNeutrinoPhysics: "<<nuEleOn<<", "<<nuMuoOn<<", "<<nuTauOn<<G4endl;
100    inelastic = new G4QInelastic("neutrinoNuclear");
101    inelastic->SetWeakNucBias(nuNucBias); // enough only once (static)
102    if (nuEleOn)   BuildNuEleNuclear();
103    if (nuMuoOn)   BuildNuMuoNuclear();
104    if (nuTauOn)   BuildNuTauNuclear();
105  }
106}
107
108void G4QNeutrinoPhysics::BuildNuEleNuclear()
109{
110  if(nuEleActivated) return;
111  nuEleActivated = true;
112  G4ProcessManager * pManager = 0;
113
114  pManager  = G4NeutrinoE::NeutrinoE()->GetProcessManager();
115  pManager->AddDiscreteProcess(inelastic);
116
117  pManager  = G4AntiNeutrinoE::AntiNeutrinoE()->GetProcessManager();
118  pManager->AddDiscreteProcess(inelastic);
119}
120
121void G4QNeutrinoPhysics::BuildNuMuoNuclear()
122{
123  if(nuMuoActivated) return;
124  nuMuoActivated = true;
125  G4ProcessManager * pManager = 0;
126
127  pManager  = G4NeutrinoMu::NeutrinoMu()->GetProcessManager();
128  pManager->AddDiscreteProcess(inelastic);
129
130  pManager  = G4AntiNeutrinoMu::AntiNeutrinoMu()->GetProcessManager();
131  pManager->AddDiscreteProcess(inelastic);
132}
133
134void G4QNeutrinoPhysics::BuildNuTauNuclear()
135{
136  if(nuTauActivated) return;
137  nuTauActivated = true;
138  G4ProcessManager * pManager = 0;
139
140  pManager  = G4NeutrinoTau::NeutrinoTau()->GetProcessManager();
141  pManager->AddDiscreteProcess(inelastic);
142
143  pManager  = G4AntiNeutrinoTau::AntiNeutrinoTau()->GetProcessManager();
144  pManager->AddDiscreteProcess(inelastic);
145}
Note: See TracBrowser for help on using the repository browser.