Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AdjointSimManager Class Reference

#include <G4AdjointSimManager.hh>

+ Inheritance diagram for G4AdjointSimManager:

Public Member Functions

void BeginOfRunAction (const G4Run *aRun) override
 
void EndOfRunAction (const G4Run *aRun) override
 
void RunAdjointSimulation (G4int nb_evt)
 
G4int GetNbEvtOfLastRun ()
 
void SetAdjointTrackingMode (G4bool aBool)
 
G4bool GetAdjointTrackingMode ()
 
G4bool GetAdjointSimMode ()
 
G4bool GetDidAdjParticleReachTheExtSource ()
 
void RegisterAtEndOfAdjointTrack ()
 
void RegisterAdjointPrimaryWeight (G4double aWeight)
 
void ResetDidOneAdjPartReachExtSourceDuringEvent ()
 
G4int GetIDOfLastAdjParticleReachingExtSource ()
 
G4ThreeVector GetPositionAtEndOfLastAdjointTrack (std::size_t i=0)
 
G4ThreeVector GetDirectionAtEndOfLastAdjointTrack (std::size_t i=0)
 
G4double GetEkinAtEndOfLastAdjointTrack (std::size_t i=0)
 
G4double GetEkinNucAtEndOfLastAdjointTrack (std::size_t i=0)
 
G4double GetWeightAtEndOfLastAdjointTrack (std::size_t i=0)
 
G4double GetCosthAtEndOfLastAdjointTrack (std::size_t i=0)
 
const G4StringGetFwdParticleNameAtEndOfLastAdjointTrack ()
 
G4int GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack (std::size_t i=0)
 
G4int GetFwdParticleIndexAtEndOfLastAdjointTrack (std::size_t i=0)
 
std::size_t GetNbOfAdointTracksReachingTheExternalSurface ()
 
void ClearEndOfAdjointTrackInfoVectors ()
 
G4ParticleDefinitionGetLastGeneratedFwdPrimaryParticle ()
 
std::vector< G4ParticleDefinition * > * GetListOfPrimaryFwdParticles ()
 
std::size_t GetNbOfPrimaryFwdParticles ()
 
G4bool DefineSphericalExtSource (G4double radius, G4ThreeVector pos)
 
G4bool DefineSphericalExtSourceWithCentreAtTheCentreOfAVolume (G4double radius, const G4String &volume_name)
 
G4bool DefineExtSourceOnTheExtSurfaceOfAVolume (const G4String &volume_name)
 
void SetExtSourceEmax (G4double Emax)
 
G4bool DefineSphericalAdjointSource (G4double radius, G4ThreeVector pos)
 
G4bool DefineSphericalAdjointSourceWithCentreAtTheCentreOfAVolume (G4double radius, const G4String &volume_name)
 
G4bool DefineAdjointSourceOnTheExtSurfaceOfAVolume (const G4String &volume_name)
 
void SetAdjointSourceEmin (G4double Emin)
 
void SetAdjointSourceEmax (G4double Emax)
 
G4double GetAdjointSourceArea ()
 
void ConsiderParticleAsPrimary (const G4String &particle_name)
 
void NeglectParticleAsPrimary (const G4String &particle_name)
 
void SetPrimaryIon (G4ParticleDefinition *adjointIon, G4ParticleDefinition *fwdIon)
 
const G4StringGetPrimaryIonName ()
 
void SetNormalisationMode (G4int n)
 
G4int GetNormalisationMode ()
 
G4double GetNumberNucleonsInIon ()
 
void SetAdjointEventAction (G4UserEventAction *anAction)
 
void SetAdjointSteppingAction (G4UserSteppingAction *anAction)
 
void SetAdjointStackingAction (G4UserStackingAction *anAction)
 
void SetAdjointRunAction (G4UserRunAction *anAction)
 
void UseUserStackingActionInFwdTrackingPhase (G4bool aBool)
 
void UseUserTrackingActionInFwdTrackingPhase (G4bool aBool)
 
void SetNbOfPrimaryFwdGammasPerEvent (G4int)
 
void SetNbAdjointPrimaryGammasPerEvent (G4int)
 
void SetNbAdjointPrimaryElectronsPerEvent (G4int)
 
void SwitchToAdjointSimulationMode ()
 
void BackToFwdSimulationMode ()
 
- Public Member Functions inherited from G4UserRunAction
 G4UserRunAction ()
 
virtual ~G4UserRunAction ()=default
 
virtual G4RunGenerateRun ()
 
virtual void SetMaster (G4bool val=true)
 
G4bool IsMaster () const
 

Static Public Member Functions

static G4AdjointSimManagerGetInstance ()
 

Additional Inherited Members

- Protected Attributes inherited from G4UserRunAction
G4bool isMaster = true
 

Detailed Description

Definition at line 162 of file G4AdjointSimManager.hh.

Member Function Documentation

◆ BackToFwdSimulationMode()

void G4AdjointSimManager::BackToFwdSimulationMode ( )

Definition at line 157 of file G4AdjointSimManager.cc.

158{
159 // Restore the user defined actions
160 //--------------------------------
161 ResetUserActions();
162 adjoint_sim_mode = false;
163}

Referenced by EndOfRunAction().

◆ BeginOfRunAction()

void G4AdjointSimManager::BeginOfRunAction ( const G4Run * aRun)
overridevirtual

Reimplemented from G4UserRunAction.

Definition at line 640 of file G4AdjointSimManager.cc.

641{ if (!adjoint_sim_mode){
642 if(fUserRunAction != nullptr) fUserRunAction->BeginOfRunAction(aRun);
643 }
644 else {
645 if (theAdjointRunAction != nullptr) theAdjointRunAction->BeginOfRunAction(aRun);
646 }
647
648 //fUserRunAction->BeginOfRunAction(aRun);
649}

◆ ClearEndOfAdjointTrackInfoVectors()

void G4AdjointSimManager::ClearEndOfAdjointTrackInfoVectors ( )

Definition at line 407 of file G4AdjointSimManager.cc.

408{
409 theAdjointTrackingAction->ClearEndOfAdjointTrackInfoVectors();
410}

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries().

◆ ConsiderParticleAsPrimary()

void G4AdjointSimManager::ConsiderParticleAsPrimary ( const G4String & particle_name)

Definition at line 554 of file G4AdjointSimManager.cc.

555{
556 theAdjointPrimaryGeneratorAction->ConsiderParticleAsPrimary(particle_name);
557}

◆ DefineAdjointSourceOnTheExtSurfaceOfAVolume()

G4bool G4AdjointSimManager::DefineAdjointSourceOnTheExtSurfaceOfAVolume ( const G4String & volume_name)

Definition at line 526 of file G4AdjointSimManager.cc.

527{
528 G4double area;
530 "AdjointSource", volume_name, area);
531 area_of_the_adjoint_source = area;
532 if (aBool) {
533 theAdjointPrimaryGeneratorAction->SetAdjointPrimarySourceOnAnExtSurfaceOfAVolume(volume_name);
534 }
535 return aBool;
536}
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
G4bool AddanExtSurfaceOfAvolume(const G4String &SurfaceName, const G4String &volume_name, G4double &area)
static G4AdjointCrossSurfChecker * GetInstance()

◆ DefineExtSourceOnTheExtSurfaceOfAVolume()

G4bool G4AdjointSimManager::DefineExtSourceOnTheExtSurfaceOfAVolume ( const G4String & volume_name)

Definition at line 483 of file G4AdjointSimManager.cc.

484{
485 G4double area;
487 volume_name, area);
488}

◆ DefineSphericalAdjointSource()

G4bool G4AdjointSimManager::DefineSphericalAdjointSource ( G4double radius,
G4ThreeVector pos )

Definition at line 499 of file G4AdjointSimManager.cc.

500{
501 G4double area;
503 radius, pos, area);
504 theAdjointPrimaryGeneratorAction->SetSphericalAdjointPrimarySource(radius, pos);
505 area_of_the_adjoint_source = area;
506 return aBool;
507}
G4bool AddaSphericalSurface(const G4String &SurfaceName, G4double radius, G4ThreeVector pos, G4double &area)

◆ DefineSphericalAdjointSourceWithCentreAtTheCentreOfAVolume()

G4bool G4AdjointSimManager::DefineSphericalAdjointSourceWithCentreAtTheCentreOfAVolume ( G4double radius,
const G4String & volume_name )

Definition at line 511 of file G4AdjointSimManager.cc.

513{
514 G4double area;
515 G4ThreeVector center;
516 G4bool aBool =
518 "AdjointSource", radius, volume_name, center, area);
519 theAdjointPrimaryGeneratorAction->SetSphericalAdjointPrimarySource(radius, center);
520 area_of_the_adjoint_source = area;
521 return aBool;
522}
CLHEP::Hep3Vector G4ThreeVector
G4bool AddaSphericalSurfaceWithCenterAtTheCenterOfAVolume(const G4String &SurfaceName, G4double radius, const G4String &volume_name, G4ThreeVector &center, G4double &area)

◆ DefineSphericalExtSource()

G4bool G4AdjointSimManager::DefineSphericalExtSource ( G4double radius,
G4ThreeVector pos )

Definition at line 462 of file G4AdjointSimManager.cc.

463{
464 G4double area;
465 return G4AdjointCrossSurfChecker::GetInstance()->AddaSphericalSurface("ExternalSource", radius,
466 pos, area);
467}

◆ DefineSphericalExtSourceWithCentreAtTheCentreOfAVolume()

G4bool G4AdjointSimManager::DefineSphericalExtSourceWithCentreAtTheCentreOfAVolume ( G4double radius,
const G4String & volume_name )

Definition at line 471 of file G4AdjointSimManager.cc.

473{
474 G4double area;
475 G4ThreeVector center;
477 ->AddaSphericalSurfaceWithCenterAtTheCenterOfAVolume("ExternalSource", radius, volume_name,
478 center, area);
479}

◆ EndOfRunAction()

void G4AdjointSimManager::EndOfRunAction ( const G4Run * aRun)
overridevirtual

Reimplemented from G4UserRunAction.

Definition at line 653 of file G4AdjointSimManager.cc.

654{
655 if (!adjoint_sim_mode) {
656 if (fUserRunAction != nullptr) fUserRunAction->EndOfRunAction(aRun);
657 }
658 else if (theAdjointRunAction != nullptr)
659 theAdjointRunAction->EndOfRunAction(aRun);
660
662
663}

◆ GetAdjointSimMode()

G4bool G4AdjointSimManager::GetAdjointSimMode ( )
inline

Definition at line 177 of file G4AdjointSimManager.hh.

178 {
179 return adjoint_sim_mode;
180 } // true if an adjoint simulation is running

◆ GetAdjointSourceArea()

G4double G4AdjointSimManager::GetAdjointSourceArea ( )
inline

Definition at line 222 of file G4AdjointSimManager.hh.

222{ return area_of_the_adjoint_source; }

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries().

◆ GetAdjointTrackingMode()

G4bool G4AdjointSimManager::GetAdjointTrackingMode ( )

Definition at line 286 of file G4AdjointSimManager.cc.

287{
288 return theAdjointTrackingAction->GetIsAdjointTrackingMode();
289}

◆ GetCosthAtEndOfLastAdjointTrack()

G4double G4AdjointSimManager::GetCosthAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 372 of file G4AdjointSimManager.cc.

373{
374 return theAdjointTrackingAction->GetCosthAtEndOfLastAdjointTrack(i);
375}

◆ GetDidAdjParticleReachTheExtSource()

G4bool G4AdjointSimManager::GetDidAdjParticleReachTheExtSource ( )

Definition at line 316 of file G4AdjointSimManager.cc.

317{
319}
std::size_t GetNbOfAdointTracksReachingTheExternalSurface()

Referenced by SetAdjointTrackingMode().

◆ GetDirectionAtEndOfLastAdjointTrack()

G4ThreeVector G4AdjointSimManager::GetDirectionAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 344 of file G4AdjointSimManager.cc.

345{
346 return theAdjointTrackingAction->GetDirectionAtEndOfLastAdjointTrack(i);
347}

◆ GetEkinAtEndOfLastAdjointTrack()

G4double G4AdjointSimManager::GetEkinAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 351 of file G4AdjointSimManager.cc.

352{
353 return theAdjointTrackingAction->GetEkinAtEndOfLastAdjointTrack(i);
354}

◆ GetEkinNucAtEndOfLastAdjointTrack()

G4double G4AdjointSimManager::GetEkinNucAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 358 of file G4AdjointSimManager.cc.

359{
360 return theAdjointTrackingAction->GetEkinNucAtEndOfLastAdjointTrack(i);
361}

◆ GetFwdParticleIndexAtEndOfLastAdjointTrack()

G4int G4AdjointSimManager::GetFwdParticleIndexAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 393 of file G4AdjointSimManager.cc.

394{
395 return theAdjointTrackingAction->GetLastFwdParticleIndex(i);
396}

◆ GetFwdParticleNameAtEndOfLastAdjointTrack()

const G4String & G4AdjointSimManager::GetFwdParticleNameAtEndOfLastAdjointTrack ( )

Definition at line 379 of file G4AdjointSimManager.cc.

380{
381 return theAdjointTrackingAction->GetFwdParticleNameAtEndOfLastAdjointTrack();
382}

◆ GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack()

G4int G4AdjointSimManager::GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 386 of file G4AdjointSimManager.cc.

387{
388 return theAdjointTrackingAction->GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack(i);
389}

◆ GetIDOfLastAdjParticleReachingExtSource()

G4int G4AdjointSimManager::GetIDOfLastAdjParticleReachingExtSource ( )
inline

Definition at line 187 of file G4AdjointSimManager.hh.

188 {
189 return ID_of_last_particle_that_reach_the_ext_source;
190 }

◆ GetInstance()

G4AdjointSimManager * G4AdjointSimManager::GetInstance ( )
static

Definition at line 89 of file G4AdjointSimManager.cc.

90{
91 if (instance == nullptr) instance = new G4AdjointSimManager;
92 return instance;
93}

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries().

◆ GetLastGeneratedFwdPrimaryParticle()

G4ParticleDefinition * G4AdjointSimManager::GetLastGeneratedFwdPrimaryParticle ( )

Definition at line 667 of file G4AdjointSimManager.cc.

668{
669 return theAdjointPrimaryGeneratorAction->GetLastGeneratedFwdPrimaryParticle();
670}

◆ GetListOfPrimaryFwdParticles()

std::vector< G4ParticleDefinition * > * G4AdjointSimManager::GetListOfPrimaryFwdParticles ( )

Definition at line 323 of file G4AdjointSimManager.cc.

324{
325 return theAdjointPrimaryGeneratorAction->GetListOfPrimaryFwdParticles();
326}

◆ GetNbEvtOfLastRun()

G4int G4AdjointSimManager::GetNbEvtOfLastRun ( )
inline

Definition at line 171 of file G4AdjointSimManager.hh.

171{ return nb_evt_of_last_run; }

◆ GetNbOfAdointTracksReachingTheExternalSurface()

std::size_t G4AdjointSimManager::GetNbOfAdointTracksReachingTheExternalSurface ( )

Definition at line 400 of file G4AdjointSimManager.cc.

401{
402 return theAdjointTrackingAction->GetNbOfAdointTracksReachingTheExternalSurface();
403}

Referenced by GetDidAdjParticleReachTheExtSource().

◆ GetNbOfPrimaryFwdParticles()

std::size_t G4AdjointSimManager::GetNbOfPrimaryFwdParticles ( )

Definition at line 330 of file G4AdjointSimManager.cc.

331{
332 return theAdjointPrimaryGeneratorAction->GetListOfPrimaryFwdParticles()->size();
333}

◆ GetNormalisationMode()

G4int G4AdjointSimManager::GetNormalisationMode ( )
inline

Definition at line 229 of file G4AdjointSimManager.hh.

229{ return normalisation_mode; }

◆ GetNumberNucleonsInIon()

G4double G4AdjointSimManager::GetNumberNucleonsInIon ( )
inline

Definition at line 230 of file G4AdjointSimManager.hh.

230{ return nb_nuc; }

◆ GetPositionAtEndOfLastAdjointTrack()

G4ThreeVector G4AdjointSimManager::GetPositionAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 337 of file G4AdjointSimManager.cc.

338{
339 return theAdjointTrackingAction->GetPositionAtEndOfLastAdjointTrack(i);
340}

◆ GetPrimaryIonName()

const G4String & G4AdjointSimManager::GetPrimaryIonName ( )

Definition at line 576 of file G4AdjointSimManager.cc.

577{
578 return theAdjointPrimaryGeneratorAction->GetPrimaryIonName();
579}

◆ GetWeightAtEndOfLastAdjointTrack()

G4double G4AdjointSimManager::GetWeightAtEndOfLastAdjointTrack ( std::size_t i = 0)

Definition at line 365 of file G4AdjointSimManager.cc.

366{
367 return theAdjointTrackingAction->GetWeightAtEndOfLastAdjointTrack(i);
368}

◆ NeglectParticleAsPrimary()

void G4AdjointSimManager::NeglectParticleAsPrimary ( const G4String & particle_name)

Definition at line 561 of file G4AdjointSimManager.cc.

562{
563 theAdjointPrimaryGeneratorAction->NeglectParticleAsPrimary(particle_name);
564}

◆ RegisterAdjointPrimaryWeight()

void G4AdjointSimManager::RegisterAdjointPrimaryWeight ( G4double aWeight)

Definition at line 583 of file G4AdjointSimManager.cc.

584{
585 theAdjointPrimaryWeight = aWeight;
586 theAdjointSteppingAction->SetPrimWeight(aWeight);
587}

◆ RegisterAtEndOfAdjointTrack()

void G4AdjointSimManager::RegisterAtEndOfAdjointTrack ( )

Definition at line 414 of file G4AdjointSimManager.cc.

415{
416 last_pos = theAdjointSteppingAction->GetLastPosition();
417 last_direction = theAdjointSteppingAction->GetLastMomentum();
418 last_direction /= last_direction.mag();
419 last_cos_th = last_direction.z();
420 G4ParticleDefinition* aPartDef = theAdjointSteppingAction->GetLastPartDef();
421
422 last_fwd_part_name = aPartDef->GetParticleName();
423
424 last_fwd_part_name.erase(0, 4);
425
426 last_fwd_part_PDGEncoding =
428
429 std::vector<G4ParticleDefinition*>* aList =
430 theAdjointPrimaryGeneratorAction->GetListOfPrimaryFwdParticles();
431 last_fwd_part_index = -1;
432 G4int i = 0;
433 while (i < (G4int)aList->size() && last_fwd_part_index < 0) {
434 if ((*aList)[i]->GetParticleName() == last_fwd_part_name) last_fwd_part_index = i;
435 ++i;
436 }
437
438 last_ekin = theAdjointSteppingAction->GetLastEkin();
439 last_ekin_nuc = last_ekin;
440 if (aPartDef->GetParticleType() == "adjoint_nucleus") {
441 nb_nuc = static_cast<G4double>(aPartDef->GetBaryonNumber());
442 last_ekin_nuc /= nb_nuc;
443 }
444
445 last_weight = theAdjointSteppingAction->GetLastWeight();
446
447 last_pos_vec.push_back(last_pos);
448 last_direction_vec.push_back(last_direction);
449 last_ekin_vec.push_back(last_ekin);
450 last_ekin_nuc_vec.push_back(last_ekin_nuc);
451 last_cos_th_vec.push_back(last_cos_th);
452 last_weight_vec.push_back(last_weight);
453 last_fwd_part_PDGEncoding_vec.push_back(last_fwd_part_PDGEncoding);
454 last_fwd_part_index_vec.push_back(last_fwd_part_index);
455 ID_of_last_particle_that_reach_the_ext_source++;
456 ID_of_last_particle_that_reach_the_ext_source_vec.push_back(
457 ID_of_last_particle_that_reach_the_ext_source);
458}
int G4int
Definition G4Types.hh:85
const G4String & GetParticleType() const
const G4String & GetParticleName() const
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
static G4ParticleTable * GetParticleTable()

Referenced by SetAdjointTrackingMode().

◆ ResetDidOneAdjPartReachExtSourceDuringEvent()

void G4AdjointSimManager::ResetDidOneAdjPartReachExtSourceDuringEvent ( )

Definition at line 674 of file G4AdjointSimManager.cc.

675{
676 theAdjointSteppingAction->ResetDidOneAdjPartReachExtSourceDuringEvent();
677}

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries().

◆ RunAdjointSimulation()

void G4AdjointSimManager::RunAdjointSimulation ( G4int nb_evt)

Definition at line 97 of file G4AdjointSimManager.cc.

98{
99
100 if (welcome_message) {
101 G4cout << "****************************************************************" << std::endl;
102 G4cout << "*** Geant4 Reverse/Adjoint Monte Carlo mode ***" << std::endl;
103 G4cout << "*** Author: L.Desorgher ***" << std::endl;
104 G4cout << "*** Company: SpaceIT GmbH, Bern, Switzerland ***" << std::endl;
105 G4cout << "*** Sponsored by: ESA/ESTEC contract contract 21435/08/NL/AT ***" << std::endl;
106 G4cout << "****************************************************************" << std::endl;
107 welcome_message = false;
108 }
109
110 // Switch to adjoint simulation mode
111 //---------------------------------------------------------
113
114 // Make the run
115 //------------
116 nb_evt_of_last_run = nb_evt;
119 G4int(nb_evt * theAdjointPrimaryGeneratorAction->GetNbOfAdjointPrimaryTypes()));
120 }
121}
G4GLOB_DLL std::ostream G4cout
static G4RunManager * GetRunManager()
virtual void BeamOn(G4int n_event, const char *macroFile=nullptr, G4int n_select=-1)
G4int G4GetThreadId()

◆ SetAdjointEventAction()

void G4AdjointSimManager::SetAdjointEventAction ( G4UserEventAction * anAction)

Definition at line 591 of file G4AdjointSimManager.cc.

592{
593 theAdjointEventAction = anAction;
594}

◆ SetAdjointRunAction()

void G4AdjointSimManager::SetAdjointRunAction ( G4UserRunAction * anAction)

Definition at line 612 of file G4AdjointSimManager.cc.

613{
614 theAdjointRunAction = anAction;
615}

◆ SetAdjointSourceEmax()

void G4AdjointSimManager::SetAdjointSourceEmax ( G4double Emax)

Definition at line 547 of file G4AdjointSimManager.cc.

548{
549 theAdjointPrimaryGeneratorAction->SetEmax(Emax);
550}

◆ SetAdjointSourceEmin()

void G4AdjointSimManager::SetAdjointSourceEmin ( G4double Emin)

Definition at line 540 of file G4AdjointSimManager.cc.

541{
542 theAdjointPrimaryGeneratorAction->SetEmin(Emin);
543}

◆ SetAdjointStackingAction()

void G4AdjointSimManager::SetAdjointStackingAction ( G4UserStackingAction * anAction)

Definition at line 605 of file G4AdjointSimManager.cc.

606{
607 theAdjointStackingAction->SetUserAdjointStackingAction(anAction);
608}

◆ SetAdjointSteppingAction()

void G4AdjointSimManager::SetAdjointSteppingAction ( G4UserSteppingAction * anAction)

Definition at line 598 of file G4AdjointSimManager.cc.

599{
600 theAdjointSteppingAction->SetUserAdjointSteppingAction(anAction);
601}

◆ SetAdjointTrackingMode()

void G4AdjointSimManager::SetAdjointTrackingMode ( G4bool aBool)

Definition at line 293 of file G4AdjointSimManager.cc.

294{
295 adjoint_tracking_mode = aBool;
296
297 if (adjoint_tracking_mode) {
298 SetRestOfAdjointActions();
299 theAdjointStackingAction->SetAdjointMode(true);
300 theAdjointStackingAction->SetKillTracks(false);
301 }
302 else {
303 ResetRestOfUserActions();
304 theAdjointStackingAction->SetAdjointMode(false);
306 theAdjointStackingAction->SetKillTracks(false);
308 }
309 else
310 theAdjointStackingAction->SetKillTracks(true);
311 }
312}
G4bool GetDidAdjParticleReachTheExtSource()

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries().

◆ SetExtSourceEmax()

void G4AdjointSimManager::SetExtSourceEmax ( G4double Emax)

Definition at line 492 of file G4AdjointSimManager.cc.

493{
494 theAdjointSteppingAction->SetExtSourceEMax(Emax);
495}

◆ SetNbAdjointPrimaryElectronsPerEvent()

void G4AdjointSimManager::SetNbAdjointPrimaryElectronsPerEvent ( G4int nb)

Definition at line 633 of file G4AdjointSimManager.cc.

634{
635 theAdjointPrimaryGeneratorAction->SetNbAdjointPrimaryElectronsPerEvent(nb);
636}

◆ SetNbAdjointPrimaryGammasPerEvent()

void G4AdjointSimManager::SetNbAdjointPrimaryGammasPerEvent ( G4int nb)

Definition at line 626 of file G4AdjointSimManager.cc.

627{
628 theAdjointPrimaryGeneratorAction->SetNbAdjointPrimaryGammasPerEvent(nb);
629}

◆ SetNbOfPrimaryFwdGammasPerEvent()

void G4AdjointSimManager::SetNbOfPrimaryFwdGammasPerEvent ( G4int nb)

Definition at line 619 of file G4AdjointSimManager.cc.

620{
621 theAdjointPrimaryGeneratorAction->SetNbPrimaryFwdGammasPerEvent(nb);
622}

◆ SetNormalisationMode()

void G4AdjointSimManager::SetNormalisationMode ( G4int n)
inline

Definition at line 228 of file G4AdjointSimManager.hh.

228{ normalisation_mode = n; }

◆ SetPrimaryIon()

void G4AdjointSimManager::SetPrimaryIon ( G4ParticleDefinition * adjointIon,
G4ParticleDefinition * fwdIon )

Definition at line 568 of file G4AdjointSimManager.cc.

570{
571 theAdjointPrimaryGeneratorAction->SetPrimaryIon(adjointIon, fwdIon);
572}

◆ SwitchToAdjointSimulationMode()

void G4AdjointSimManager::SwitchToAdjointSimulationMode ( )

Definition at line 141 of file G4AdjointSimManager.cc.

142{
143 // Replace the user defined actions by the adjoint actions
144 //---------------------------------------------------------
145 SetAdjointActions();
146
147 // Update the list of primaries
148 //-----------------------------
149 if (G4Threading::G4GetThreadId() != -1) theAdjointPrimaryGeneratorAction->UpdateListOfPrimaryParticles();
150 adjoint_sim_mode = true;
151 ID_of_last_particle_that_reach_the_ext_source = 0;
152
153}

Referenced by RunAdjointSimulation().

◆ UseUserStackingActionInFwdTrackingPhase()

void G4AdjointSimManager::UseUserStackingActionInFwdTrackingPhase ( G4bool aBool)
inline

Definition at line 241 of file G4AdjointSimManager.hh.

242 {
243 use_user_StackingAction = aBool;
244 }

◆ UseUserTrackingActionInFwdTrackingPhase()

void G4AdjointSimManager::UseUserTrackingActionInFwdTrackingPhase ( G4bool aBool)
inline

Definition at line 245 of file G4AdjointSimManager.hh.

246 {
247 use_user_TrackingAction = aBool;
248 }

The documentation for this class was generated from the following files: