37 : fGlobalFastSimulationManager(theGFSM)
40 fFSDirectory->SetGuidance(
"Fast Simulation print/control commands.");
43 fShowSetupCmd->SetGuidance(
"Show fast simulation setup:");
44 fShowSetupCmd->SetGuidance(
" - for each world region:");
45 fShowSetupCmd->SetGuidance(
" 1) fast simulation manager process attached;");
46 fShowSetupCmd->SetGuidance(
" - and to which particles the process is attached to;");
47 fShowSetupCmd->SetGuidance(
" 2) region hierarchy;");
48 fShowSetupCmd->SetGuidance(
" - with for each the fast simulation models attached;");
52 fListEnvelopesCmd->SetParameterName(
"ParticleName",
true);
53 fListEnvelopesCmd->SetDefaultValue(
"all");
54 fListEnvelopesCmd->SetGuidance(
"List all the envelope names for a given Particle");
55 fListEnvelopesCmd->SetGuidance(
"(or for all particles if without parameters).");
59 fListModelsCmd->SetParameterName(
"EnvelopeName",
true);
60 fListModelsCmd->SetDefaultValue(
"all");
61 fListModelsCmd->SetGuidance(
"List all the Model names for a given Envelope");
62 fListModelsCmd->SetGuidance(
"(or for all envelopes if without parameters).");
66 fListIsApplicableCmd->SetParameterName(
"ModelName",
true);
67 fListIsApplicableCmd->SetDefaultValue(
"all");
68 fListIsApplicableCmd->SetGuidance(
"List all the Particle names a given Model is applicable");
69 fListIsApplicableCmd->SetGuidance(
"(or for all Models if without parameters).");
72 fActivateModel->SetParameterName(
"ModelName",
false);
73 fActivateModel->SetGuidance(
"Activate a given Model.");
76 fInActivateModel->SetParameterName(
"ModelName",
false);
77 fInActivateModel->SetGuidance(
"InActivate a given Model.");
93 if (command == fShowSetupCmd) fGlobalFastSimulationManager->ShowSetup();
94 if (command == fListEnvelopesCmd) {
95 if (newValue ==
"all")
96 fGlobalFastSimulationManager->ListEnvelopes();
98 fGlobalFastSimulationManager->ListEnvelopes(
101 if (command == fListModelsCmd) fGlobalFastSimulationManager->ListEnvelopes(newValue,
MODELS);
102 if (command == fListIsApplicableCmd)
103 fGlobalFastSimulationManager->ListEnvelopes(newValue,
ISAPPLICABLE);
104 if (command == fActivateModel)
105 fGlobalFastSimulationManager->ActivateFastSimulationModel(newValue);
106 if (command == fInActivateModel)
107 fGlobalFastSimulationManager->InActivateFastSimulationModel(newValue);
static G4ParticleTable * GetParticleTable()