Geant4-11
G4MuNeutrinoNucleusProcess.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//
27// Geant4 Hadron Elastic Scattering Process
28//
29// Created from G4HadronElasticProcess
30//
31// Modified:
32//
33// 2.2.19 V.Grichine - PostStepDoIt implementation
34// 24.04.19 V. Grichine - G4Region name and optionally total cross section biased in the region only.
35
36#include <iostream>
37#include <typeinfo>
38
40#include "G4SystemOfUnits.hh"
41#include "G4Nucleus.hh"
42#include "G4ProcessManager.hh"
48#include "G4VDiscreteProcess.hh"
49
51//#include "G4NuMuNucleusCcModel.hh"
52//#include "G4NuMuNucleusNcModel.hh"
53
54#include "G4RotationMatrix.hh"
55#include "G4ThreeVector.hh"
56#include "G4AffineTransform.hh"
57#include "G4DynamicParticle.hh"
58#include "G4StepPoint.hh"
59#include "G4VSolid.hh"
60#include "G4LogicalVolume.hh"
61#include "G4SafetyHelper.hh"
63
65
66
68 : G4HadronicProcess( pName, fHadronInelastic ), isInitialised(false), fBiased(true) // fHadronElastic???
69{
70 lowestEnergy = 1.*keV;
71 fEnvelope = nullptr;
72 fEnvelopeName = anEnvelopeName;
73 fTotXsc = nullptr; // new G4MuNeutrinoNucleusTotXsc();
79}
80
82{
83 if( fTotXsc ) delete fTotXsc;
84}
85
87
89{
91
94}
95
97
99{
100 fNuNuclCcBias=bfCc;
101 fNuNuclNcBias=bfNc;
102
104 // fTotXsc->SetBiasingFactors(bfCc, bfNc);
105}
106
108
111{
112 //G4cout << "GetMeanFreePath " << aTrack.GetDefinition()->GetParticleName()
113 // << " Ekin= " << aTrack.GetKineticEnergy() << G4endl;
115 G4double totxsc(0.);
116
117 if( rName == fEnvelopeName && fNuNuclTotXscBias > 1.)
118 {
119 totxsc = fNuNuclTotXscBias*
121 aTrack.GetMaterial());
122 }
123 else
124 {
126 aTrack.GetMaterial());
127 }
128 G4double res = (totxsc>0.0) ? 1.0/totxsc : DBL_MAX;
129 //G4cout << " xsection= " << totxsc << G4endl;
130 return res;
131}
132
134
135void G4MuNeutrinoNucleusProcess::ProcessDescription(std::ostream& outFile) const
136{
137
138 outFile << "G4MuNeutrinoNucleusProcess handles the scattering of \n"
139 << "neutrino on electrons by invoking the following model(s) and \n"
140 << "cross section(s).\n";
141
142}
143
145
148{
149 // track.GetVolume()->GetLogicalVolume()->GetName()
150 // if( track.GetVolume()->GetLogicalVolume() != fEnvelope )
151
153
154 if( rName != fEnvelopeName )
155 {
156 if( verboseLevel > 0 )
157 {
158 G4cout<<"Go out from G4MuNeutrinoNucleusProcess::PostStepDoIt: wrong volume "<<G4endl;
159 }
160 return G4VDiscreteProcess::PostStepDoIt( track, step );
161 }
164 G4double weight = track.GetWeight();
166
167 if( track.GetTrackStatus() != fAlive )
168 {
169 return theTotalResult;
170 }
171 // Next check for illegal track status
172 //
173 if (track.GetTrackStatus() != fAlive &&
174 track.GetTrackStatus() != fSuspend)
175 {
176 if (track.GetTrackStatus() == fStopAndKill ||
179 {
181 ed << "G4HadronicProcess: track in unusable state - "
182 << track.GetTrackStatus() << G4endl;
183 ed << "G4HadronicProcess: returning unchanged track " << G4endl;
184 DumpState(track,"PostStepDoIt",ed);
185 G4Exception("G4HadronicProcess::PostStepDoIt", "had004", JustWarning, ed);
186 }
187 // No warning for fStopButAlive which is a legal status here
188 return theTotalResult;
189 }
190
191 // For elastic scattering, _any_ result is considered an interaction
193
194 G4double kineticEnergy = track.GetKineticEnergy();
195 const G4DynamicParticle* dynParticle = track.GetDynamicParticle();
196 const G4ParticleDefinition* part = dynParticle->GetDefinition();
197 const G4String pName = part->GetParticleName();
198
199 // NOTE: Very low energy scatters were causing numerical (FPE) errors
200 // in earlier releases; these limits have not been changed since.
201
202 if ( kineticEnergy <= lowestEnergy ) return theTotalResult;
203
204 const G4Material* material = track.GetMaterial();
205 G4Nucleus* targNucleus = GetTargetNucleusPointer();
206
208
209 const G4StepPoint* pPostStepPoint = step.GetPostStepPoint();
210 const G4DynamicParticle* aParticle = track.GetDynamicParticle();
211 G4ThreeVector position = pPostStepPoint->GetPosition(), newPosition=position;
212 G4ParticleMomentum direction = aParticle->GetMomentumDirection();
213
214 if( fNuNuclCcBias > 1.0 || fNuNuclNcBias > 1.0) // = true, if fBiasingfactor != 1., i.e. xsc is biased
215 {
216 const G4RotationMatrix* rotM = pPostStepPoint->GetTouchable()->GetRotation();
217 G4ThreeVector transl = pPostStepPoint->GetTouchable()->GetTranslation();
219 transform.Invert();
220
221 G4ThreeVector localP = transform.TransformPoint(position);
222 G4ThreeVector localV = transform.TransformAxis(direction);
223
224 G4double forward = track.GetVolume()->GetLogicalVolume()->GetSolid()->DistanceToOut(localP, localV);
225 G4double backward = track.GetVolume()->GetLogicalVolume()->GetSolid()->DistanceToOut(localP, -localV);
226
227 G4double distance = forward+backward;
228
229 // G4cout<<distance/cm<<", ";
230
231 // uniform sampling of nu-e interaction point
232 // along neutrino direction in current volume
233
234 G4double range = -backward+G4UniformRand()*distance;
235
236 newPosition = position + range*direction;
237
239
240 theTotalResult->ProposePosition(newPosition); // G4Exception : GeomNav1002
241 }
242 G4HadProjectile theProj( track );
243 G4HadronicInteraction* hadi = nullptr;
244 G4HadFinalState* result = nullptr;
245
246 G4double ccTotRatio = fTotXsc->GetCcTotRatio();
247
248 if( G4UniformRand() < ccTotRatio ) // Cc-model
249 {
250 // Initialize the hadronic projectile from the track
251 thePro.Initialise(track);
252
253 if (pName == "nu_mu" ) hadi = (GetHadronicInteractionList())[0];
254 else hadi = (GetHadronicInteractionList())[2];
255
256 result = hadi->ApplyYourself( thePro, *targNucleus);
257
259
261
262 FillResult(result, track);
263 }
264 else // Nc-model
265 {
266
267 if (pName == "nu_mu" ) hadi = (GetHadronicInteractionList())[1];
268 else hadi = (GetHadronicInteractionList())[3];
269
270 size_t idx = track.GetMaterialCutsCouple()->GetIndex();
271
273
274 hadi->SetRecoilEnergyThreshold(tcut);
275
276 if( verboseLevel > 1 )
277 {
278 G4cout << "G4MuNeutrinoNucleusProcess::PostStepDoIt for "
279 << part->GetParticleName()
280 << " in " << material->GetName()
281 << " Target Z= " << targNucleus->GetZ_asInt()
282 << " A= " << targNucleus->GetA_asInt() << G4endl;
283 }
284 try
285 {
286 result = hadi->ApplyYourself( theProj, *targNucleus);
287 }
288 catch(G4HadronicException & aR)
289 {
291 aR.Report(ed);
292 ed << "Call for " << hadi->GetModelName() << G4endl;
293 ed << " Z= "
294 << targNucleus->GetZ_asInt()
295 << " A= " << targNucleus->GetA_asInt() << G4endl;
296 DumpState(track,"ApplyYourself",ed);
297 ed << " ApplyYourself failed" << G4endl;
298 G4Exception("G4MuNeutrinoNucleusProcess::PostStepDoIt", "had006",
299 FatalException, ed);
300 }
301 // directions
302
303 G4ThreeVector indir = track.GetMomentumDirection();
305 G4ThreeVector it(0., 0., 1.);
306 G4ThreeVector outdir = result->GetMomentumChange();
307
308 if(verboseLevel>1)
309 {
310 G4cout << "Efin= " << result->GetEnergyChange()
311 << " de= " << result->GetLocalEnergyDeposit()
312 << " nsec= " << result->GetNumberOfSecondaries()
313 << " dir= " << outdir
314 << G4endl;
315 }
316 // energies
317
318 G4double edep = result->GetLocalEnergyDeposit();
319 G4double efinal = result->GetEnergyChange();
320
321 if(efinal < 0.0) { efinal = 0.0; }
322 if(edep < 0.0) { edep = 0.0; }
323
324 // NOTE: Very low energy scatters were causing numerical (FPE) errors
325 // in earlier releases; these limits have not been changed since.
326
327 if(efinal <= lowestEnergy)
328 {
329 edep += efinal;
330 efinal = 0.0;
331 }
332 // primary change
333
335
336 G4TrackStatus status = track.GetTrackStatus();
337
338 if(efinal > 0.0)
339 {
340 outdir.rotate(phi, it);
341 outdir.rotateUz(indir);
343 }
344 else
345 {
346 if( part->GetProcessManager()->GetAtRestProcessVector()->size() > 0)
347 {
348 status = fStopButAlive;
349 }
350 else
351 {
352 status = fStopAndKill;
353 }
355 }
356 //G4cout << "Efinal= " << efinal << " TrackStatus= " << status << G4endl;
357
359
360 // recoil
361
362 if( result->GetNumberOfSecondaries() > 0 )
363 {
364 G4DynamicParticle* p = result->GetSecondary(0)->GetParticle();
365
366 if(p->GetKineticEnergy() > tcut)
367 {
370
371 // G4cout << "recoil " << pdir << G4endl;
373
374 pdir.rotate(phi, it);
375 pdir.rotateUz(indir);
376
377 // G4cout << "recoil rotated " << pdir << G4endl;
378
379 p->SetMomentumDirection(pdir);
380
381 // in elastic scattering time and weight are not changed
382
383 G4Track* t = new G4Track(p, track.GetGlobalTime(),
384 track.GetPosition());
385 t->SetWeight(weight);
388 }
389 else
390 {
391 edep += p->GetKineticEnergy();
392 delete p;
393 }
394 }
397 result->Clear();
398 }
399 return theTotalResult;
400}
401
402void
404{
405 if(!isInitialised) {
406 isInitialised = true;
407 // if(G4Neutron::Neutron() == &part) { lowestEnergy = 1.e-6*eV; }
408 }
410}
411
412void
414{
415 lowestEnergy = val;
416}
417
@ JustWarning
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
std::ostringstream G4ExceptionDescription
Definition: G4Exception.hh:40
G4ForceCondition
@ fHadronInelastic
static constexpr double keV
Definition: G4SIunits.hh:202
G4TrackStatus
@ fKillTrackAndSecondaries
@ fSuspend
@ fAlive
@ fStopAndKill
@ fStopButAlive
@ fPostponeToNextEvent
double G4double
Definition: G4Types.hh:83
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
#define G4UniformRand()
Definition: Randomize.hh:52
Hep3Vector & rotateUz(const Hep3Vector &)
Definition: ThreeVector.cc:33
Hep3Vector & rotate(double, const Hep3Vector &)
Definition: ThreeVectorR.cc:24
G4double ComputeCrossSection(const G4DynamicParticle *, const G4Material *)
void SetMomentumDirection(const G4ThreeVector &aDirection)
const G4ThreeVector & GetMomentumDirection() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
G4double GetEnergyChange() const
void SetTrafoToLab(const G4LorentzRotation &aT)
G4double GetLocalEnergyDeposit() const
const G4ThreeVector & GetMomentumChange() const
std::size_t GetNumberOfSecondaries() const
G4HadSecondary * GetSecondary(size_t i)
void Initialise(const G4Track &aT)
G4LorentzRotation & GetTrafoToLab()
G4DynamicParticle * GetParticle()
void Report(std::ostream &aS) const
virtual G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &targetNucleus)
const G4String & GetModelName() const
void SetRecoilEnergyThreshold(G4double val)
void FillResult(G4HadFinalState *aR, const G4Track &aT)
G4HadProjectile thePro
G4Nucleus * GetTargetNucleusPointer()
G4ParticleChange * theTotalResult
std::vector< G4HadronicInteraction * > & GetHadronicInteractionList()
void PreparePhysicsTable(const G4ParticleDefinition &) override
G4CrossSectionDataStore * GetCrossSectionDataStore()
void DumpState(const G4Track &, const G4String &, G4ExceptionDescription &)
G4VSolid * GetSolid() const
G4Region * GetRegion() const
G4VParticleChange * PostStepDoIt(const G4Track &aTrack, const G4Step &aStep) override
G4double GetMeanFreePath(const G4Track &aTrack, G4double, G4ForceCondition *) override
G4MuNeutrinoNucleusProcess(G4String anEnvelopeName, const G4String &procName="mu-neutrino-nucleus")
G4MuNeutrinoNucleusTotXsc * fTotXsc
void SetBiasingFactors(G4double bfCc, G4double bfNc)
void ProcessDescription(std::ostream &outFile) const override
void PreparePhysicsTable(const G4ParticleDefinition &) override
G4int GetA_asInt() const
Definition: G4Nucleus.hh:99
G4int GetZ_asInt() const
Definition: G4Nucleus.hh:105
void AddSecondary(G4Track *aSecondary)
void ProposePosition(G4double x, G4double y, G4double z)
void ProposeEnergy(G4double finalEnergy)
void ProposeMomentumDirection(G4double Px, G4double Py, G4double Pz)
virtual void Initialize(const G4Track &)
G4ProcessManager * GetProcessManager() const
const G4String & GetParticleName() const
G4ProcessVector * GetAtRestProcessVector(G4ProcessVectorTypeIndex typ=typeGPIL) const
std::size_t size() const
const std::vector< G4double > * GetEnergyCutsVector(std::size_t pcIdx) const
static G4ProductionCutsTable * GetProductionCutsTable()
const G4String & GetName() const
void ReLocateWithinVolume(const G4ThreeVector &pGlobalPoint)
void InitialiseHelper()
const G4VTouchable * GetTouchable() const
const G4ThreeVector & GetPosition() const
G4VPhysicalVolume * GetPhysicalVolume() const
Definition: G4Step.hh:62
G4StepPoint * GetPreStepPoint() const
G4StepPoint * GetPostStepPoint() const
G4TrackStatus GetTrackStatus() const
G4VPhysicalVolume * GetVolume() const
G4double GetWeight() const
void SetWeight(G4double aValue)
const G4ThreeVector & GetPosition() const
void SetTouchableHandle(const G4TouchableHandle &apValue)
G4double GetGlobalTime() const
G4Material * GetMaterial() const
const G4DynamicParticle * GetDynamicParticle() const
const G4TouchableHandle & GetTouchableHandle() const
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
const G4Step * GetStep() const
static G4TransportationManager * GetTransportationManager()
G4SafetyHelper * GetSafetyHelper() const
virtual G4VParticleChange * PostStepDoIt(const G4Track &, const G4Step &)
void ProposeTrackStatus(G4TrackStatus status)
void ProposeNonIonizingEnergyDeposit(G4double anEnergyPart)
void ProposeWeight(G4double finalWeight)
void ProposeLocalEnergyDeposit(G4double anEnergyPart)
void SetNumberOfSecondaries(G4int totSecondaries)
G4LogicalVolume * GetLogicalVolume() const
void ClearNumberOfInteractionLengthLeft()
Definition: G4VProcess.hh:424
G4int verboseLevel
Definition: G4VProcess.hh:356
virtual G4double DistanceToOut(const G4ThreeVector &p, const G4ThreeVector &v, const G4bool calcNorm=false, G4bool *validNorm=nullptr, G4ThreeVector *n=nullptr) const =0
virtual const G4ThreeVector & GetTranslation(G4int depth=0) const =0
virtual const G4RotationMatrix * GetRotation(G4int depth=0) const =0
static constexpr double twopi
Definition: SystemOfUnits.h:56
G4bool transform(G4String &input, const G4String &type)
string material
Definition: eplot.py:19
#define DBL_MAX
Definition: templates.hh:62
#define position
Definition: xmlparse.cc:622