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

#include <G4ProcessTable.hh>

Public Types

using G4ProcTableVector = std::vector< G4ProcTblElement * >
 
using G4ProcNameVector = std::vector< G4String >
 

Public Member Functions

 ~G4ProcessTable ()
 
 G4ProcessTable (const G4ProcessTable &)=delete
 
G4ProcessTableoperator= (const G4ProcessTable &)=delete
 
G4bool operator== (const G4ProcessTable &right) const =delete
 
G4bool operator!= (const G4ProcessTable &right) const =delete
 
G4int Length () const
 
G4int Insert (G4VProcess *aProcess, G4ProcessManager *aProcMgr)
 
G4int Remove (G4VProcess *aProcess, G4ProcessManager *aProcMgr)
 
G4VProcessFindProcess (const G4String &processName, const G4String &particleName) const
 
G4VProcessFindProcess (const G4String &processName, const G4ParticleDefinition *particle) const
 
G4VProcessFindProcess (const G4String &processName, const G4ProcessManager *processManager) const
 
G4VProcessFindProcess (G4ProcessType processType, const G4ParticleDefinition *particle) const
 
G4VProcessFindProcess (G4int processSubType, const G4ParticleDefinition *particle) const
 
void RegisterProcess (G4VProcess *)
 
void DeRegisterProcess (G4VProcess *)
 
G4ProcessVectorFindProcesses ()
 
G4ProcessVectorFindProcesses (const G4ProcessManager *pManager)
 
G4ProcessVectorFindProcesses (const G4String &processName)
 
G4ProcessVectorFindProcesses (G4ProcessType processType)
 
void SetProcessActivation (const G4String &processName, G4bool fActive)
 
void SetProcessActivation (const G4String &processName, const G4String &particleName, G4bool fActive)
 
void SetProcessActivation (const G4String &processName, const G4ParticleDefinition *particle, G4bool fActive)
 
void SetProcessActivation (const G4String &processName, G4ProcessManager *processManager, G4bool fActive)
 
void SetProcessActivation (G4ProcessType processType, G4bool fActive)
 
void SetProcessActivation (G4ProcessType processType, const G4String &particleName, G4bool fActive)
 
void SetProcessActivation (G4ProcessType processType, const G4ParticleDefinition *particle, G4bool fActive)
 
void SetProcessActivation (G4ProcessType processType, G4ProcessManager *processManager, G4bool fActive)
 
G4ProcNameVectorGetNameList ()
 
G4ProcTableVectorGetProcTableVector ()
 
void DumpInfo (G4VProcess *process, const G4ParticleDefinition *particle=nullptr)
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 

Static Public Member Functions

static G4ProcessTableGetProcessTable ()
 

Friends

class G4ThreadLocalSingleton< G4ProcessTable >
 

Detailed Description

Definition at line 48 of file G4ProcessTable.hh.

Member Typedef Documentation

◆ G4ProcNameVector

Definition at line 55 of file G4ProcessTable.hh.

◆ G4ProcTableVector

Definition at line 54 of file G4ProcessTable.hh.

Constructor & Destructor Documentation

◆ ~G4ProcessTable()

G4ProcessTable::~G4ProcessTable ( )

Definition at line 60 of file G4ProcessTable.cc.

61{
62 if ( tmpTblVector != nullptr )
63 {
64 tmpTblVector ->clear();
65 delete tmpTblVector;
66 tmpTblVector = nullptr;
67 }
68
69 if ( fProcTblVector != nullptr )
70 {
71 for (auto elem : *fProcTblVector)
72 {
73 delete elem;
74 }
75 fProcTblVector ->clear();
76 delete fProcTblVector;
77 fProcTblVector = nullptr;
78 }
79
80 // delete all process except transportation
81 for(auto proc : fListProcesses)
82 {
83 if ( proc != nullptr )
84 {
85 G4ProcessType type = proc->GetProcessType();
86 if (type != fTransportation && type != fParallel
87 && type != fParameterisation)
88 {
89 delete proc;
90 }
91 }
92 }
93
94 fListProcesses.clear();
95
96 if ( fProcNameVector != nullptr )
97 {
98 fProcNameVector ->clear();
99 delete fProcNameVector;
100 fProcNameVector = nullptr;
101 }
102 fProcessTable = nullptr;
103 delete fProcTblMessenger;
104}
G4ProcessType
@ fParameterisation
@ fParallel
@ fTransportation

◆ G4ProcessTable()

G4ProcessTable::G4ProcessTable ( const G4ProcessTable )
delete

Member Function Documentation

◆ DeRegisterProcess()

void G4ProcessTable::DeRegisterProcess ( G4VProcess ptr)

Definition at line 270 of file G4ProcessTable.cc.

271{
272 G4int nn = fListProcesses.size();
273 for(G4int i=0; i<nn; ++i)
274 {
275 if(ptr == fListProcesses[i])
276 {
277 fListProcesses[i] = nullptr;
278 return;
279 }
280 }
281}
int G4int
Definition: G4Types.hh:85

Referenced by G4VProcess::~G4VProcess().

◆ DumpInfo()

void G4ProcessTable::DumpInfo ( G4VProcess process,
const G4ParticleDefinition particle = nullptr 
)

Definition at line 633 of file G4ProcessTable.cc.

635{
636 G4int idxTbl=0;
637 G4ProcTblElement* anElement = nullptr;
638 G4bool isFoundInTbl = false;
639 G4ProcessManager* manager = nullptr;
640 G4int idx;
641 // loop over all elements
642 for (auto itr=fProcTblVector->cbegin();
643 itr!=fProcTblVector->cend(); ++itr, ++idxTbl)
644 {
645 anElement = (*itr);
646 if (process == anElement->GetProcess() )
647 {
648 if (particle != nullptr)
649 {
650 for (idx=0; idx<anElement->Length(); ++idx)
651 {
652 manager = anElement->GetProcessManager(idx);
653 if (particle == manager->GetParticleType())
654 {
655 isFoundInTbl = true;
656 break;
657 }
658 }
659 }
660 else
661 {
662 isFoundInTbl = true;
663 }
664 break;
665 }
666 }
667 if (!isFoundInTbl ) return;
668
669 G4int tmpVerbose = process->GetVerboseLevel();
670 process->SetVerboseLevel(verboseLevel);
671 process->DumpInfo();
672 process->SetVerboseLevel(tmpVerbose);
673 if (particle == nullptr)
674 {
675 for (idx=0; idx<anElement->Length(); ++idx)
676 {
677 manager = anElement->GetProcessManager(idx);
678 G4cout << " for " << manager->GetParticleType()->GetParticleName();
679 G4cout << G4endl;
680#ifdef G4VERBOSE
681 if (verboseLevel >2)
682 {
683 tmpVerbose = manager->GetVerboseLevel();
684 manager->SetVerboseLevel(verboseLevel);
685 manager->DumpInfo();
686 manager->SetVerboseLevel(tmpVerbose);
687 }
688#endif
689 }
690 }
691 else
692 {
693 G4cout << " for " << manager->GetParticleType()->GetParticleName();
694 G4cout << G4endl;
695#ifdef G4VERBOSE
696 if (verboseLevel >2)
697 {
698 tmpVerbose = manager->GetVerboseLevel();
699 manager->SetVerboseLevel(verboseLevel);
700 manager->DumpInfo();
701 manager->SetVerboseLevel(tmpVerbose);
702 }
703#endif
704 }
705}
bool G4bool
Definition: G4Types.hh:86
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
const G4String & GetParticleName() const
G4VProcess * GetProcess() const
G4int Length() const
G4ProcessManager * GetProcessManager(G4int index) const
G4ParticleDefinition * GetParticleType() const
void SetVerboseLevel(G4int value)
G4int GetVerboseLevel() const
void SetVerboseLevel(G4int value)
Definition: G4VProcess.hh:412
G4int GetVerboseLevel() const
Definition: G4VProcess.hh:418
virtual void DumpInfo() const
Definition: G4VProcess.cc:167

Referenced by G4ProcessTableMessenger::SetNewValue().

◆ FindProcess() [1/5]

G4VProcess * G4ProcessTable::FindProcess ( const G4String processName,
const G4ParticleDefinition particle 
) const
inline

◆ FindProcess() [2/5]

G4VProcess * G4ProcessTable::FindProcess ( const G4String processName,
const G4ProcessManager processManager 
) const

Definition at line 294 of file G4ProcessTable.cc.

297{
298 for (auto anElement : *fProcTblVector)
299 {
300 // check name and if the processManage is included
301 if (anElement && anElement->GetProcessName() == processName
302 && anElement->Contains(processManager))
303 {
304 return anElement->GetProcess();
305 }
306 }
307#ifdef G4VERBOSE
308 if (verboseLevel > 1)
309 {
310 G4cout << " G4ProcessTable::FindProcess() -" ;
311 G4cout << " The Process[" << processName << "] is not found ";
312 G4cout << " for [" << processManager->GetParticleType()->GetParticleName()
313 << "]" << G4endl;
314 }
315#endif
316 return nullptr;
317}

◆ FindProcess() [3/5]

G4VProcess * G4ProcessTable::FindProcess ( const G4String processName,
const G4String particleName 
) const

Definition at line 285 of file G4ProcessTable.cc.

287{
288 return FindProcess(processName,
289 G4ParticleTable::GetParticleTable()->FindParticle(particleName));
290}
static G4ParticleTable * GetParticleTable()
G4VProcess * FindProcess(const G4String &processName, const G4String &particleName) const

Referenced by G4EmDNAChemistry::ConstructProcess(), G4SpinDecayPhysics::ConstructProcess(), FindProcess(), and SetProcessActivation().

◆ FindProcess() [4/5]

G4VProcess * G4ProcessTable::FindProcess ( G4int  processSubType,
const G4ParticleDefinition particle 
) const

Definition at line 350 of file G4ProcessTable.cc.

352{
353 // find the first process of given type for this particle
354
355 const G4ProcessManager* processManager = particle->GetProcessManager();
356 for (auto anElement : *fProcTblVector)
357 {
358 if ( anElement != nullptr
359 && anElement->GetProcess()->GetProcessSubType() == procSubType
360 && anElement->Contains(processManager) )
361 {
362 return anElement->GetProcess();
363 }
364 }
365#ifdef G4VERBOSE
366 if (verboseLevel > 1)
367 {
368 G4cout << " G4ProcessTable::FindProcess() -";
369 G4cout << " The Process SubType " << procSubType << " is not found ";
370 G4cout << " for [" << particle->GetParticleName() << "]" << G4endl;
371 }
372#endif
373 return nullptr;
374}
G4ProcessManager * GetProcessManager() const
G4VProcess * GetProcess(const G4String &) const

◆ FindProcess() [5/5]

G4VProcess * G4ProcessTable::FindProcess ( G4ProcessType  processType,
const G4ParticleDefinition particle 
) const

Definition at line 322 of file G4ProcessTable.cc.

324{
325 // find the first process of given type for this particle
326
327 const G4ProcessManager* processManager = particle->GetProcessManager();
328 for (auto anElement : *fProcTblVector)
329 {
330 if (anElement && anElement->GetProcess()->GetProcessType() == processType
331 && anElement->Contains(processManager))
332 {
333 return anElement->GetProcess();
334 }
335 }
336#ifdef G4VERBOSE
337 if (verboseLevel > 1)
338 {
339 G4cout << " G4ProcessTable::FindProcess() -";
340 G4cout << " The Process Type " << processType << " is not found ";
341 G4cout << " for [" << particle->GetParticleName() << "]" << G4endl;
342 }
343#endif
344 return nullptr;
345}

◆ FindProcesses() [1/4]

G4ProcessVector * G4ProcessTable::FindProcesses ( )
inline

◆ FindProcesses() [2/4]

G4ProcessVector * G4ProcessTable::FindProcesses ( const G4ProcessManager pManager)
inline

◆ FindProcesses() [3/4]

G4ProcessVector * G4ProcessTable::FindProcesses ( const G4String processName)
inline

◆ FindProcesses() [4/4]

G4ProcessVector * G4ProcessTable::FindProcesses ( G4ProcessType  processType)
inline

◆ GetNameList()

G4ProcNameVector * G4ProcessTable::GetNameList ( )
inline

◆ GetProcessTable()

◆ GetProcTableVector()

G4ProcTableVector * G4ProcessTable::GetProcTableVector ( )
inline

◆ GetVerboseLevel()

G4int G4ProcessTable::GetVerboseLevel ( ) const
inline

◆ Insert()

G4int G4ProcessTable::Insert ( G4VProcess aProcess,
G4ProcessManager aProcMgr 
)

Definition at line 120 of file G4ProcessTable.cc.

122{
123 if ( (aProcess == nullptr) || ( aProcMgr == nullptr ) || !fProcTblVector )
124 {
125#ifdef G4VERBOSE
126 if (verboseLevel>0)
127 {
128 G4cout << "G4ProcessTable::Insert() - arguments are null pointer "
129 << aProcess << "," << aProcMgr << G4endl;
130 }
131#endif
132 return -1;
133 }
134
135#ifdef G4VERBOSE
136 if (verboseLevel>1)
137 {
138 G4cout << "G4ProcessTable::Insert() -";
139 G4cout << " Process[" << aProcess->GetProcessName() << "]";
140 G4cout << " Particle[" << aProcMgr->GetParticleType()->GetParticleName()
141 << "]" << G4endl;
142 }
143#endif
144
145 G4int idxTbl = 0;
146 G4int nidx = fProcTblVector->size();
147 G4ProcTblElement* anElement = nullptr;
148 // loop over all elements
149 for (; idxTbl < nidx; ++idxTbl)
150 {
151 anElement = (*fProcTblVector)[idxTbl];
152 if(!anElement) { continue; }
153 // check if this process is included
154 if (aProcess == anElement->GetProcess())
155 {
156 // add the process manager into the element
157 // unless this process manager is included
158 if (!anElement->Contains(aProcMgr))
159 {
160 anElement->Insert(aProcMgr);
161#ifdef G4VERBOSE
162 if (verboseLevel>2)
163 {
164 G4cout << " This Process Manager is registered !! " << G4endl;
165 }
166#endif
167 }
168 return idxTbl;
169 }
170 }
171 // add this process into the table by creating a new element
172 if (verboseLevel>2)
173 {
174 G4cout << " New element is created !! " << G4endl;
175 }
176 anElement = new G4ProcTblElement(aProcess);
177 anElement->Insert(aProcMgr);
178 fProcTblVector->push_back(anElement);
179 fProcNameVector->push_back(aProcess->GetProcessName() );
180 return nidx;
181}
G4bool Contains(const G4ProcessManager *pManager) const
void Insert(G4ProcessManager *aProcMgr)
const G4String & GetProcessName() const
Definition: G4VProcess.hh:382

Referenced by G4ProcessManager::AddProcess(), and G4ProcessManager::G4ProcessManager().

◆ Length()

G4int G4ProcessTable::Length ( ) const
inline

◆ operator!=()

G4bool G4ProcessTable::operator!= ( const G4ProcessTable right) const
delete

◆ operator=()

G4ProcessTable & G4ProcessTable::operator= ( const G4ProcessTable )
delete

◆ operator==()

G4bool G4ProcessTable::operator== ( const G4ProcessTable right) const
delete

◆ RegisterProcess()

void G4ProcessTable::RegisterProcess ( G4VProcess ptr)

Definition at line 259 of file G4ProcessTable.cc.

260{
261 for(auto proc : fListProcesses)
262 {
263 if(ptr == proc) { return; }
264 }
265 fListProcesses.push_back(ptr);
266}

Referenced by G4VProcess::G4VProcess().

◆ Remove()

G4int G4ProcessTable::Remove ( G4VProcess aProcess,
G4ProcessManager aProcMgr 
)

Definition at line 185 of file G4ProcessTable.cc.

187{
188 if ( (aProcess == nullptr) || ( aProcMgr == nullptr ) || !fProcTblVector )
189 {
190#ifdef G4VERBOSE
191 if (verboseLevel>0)
192 {
193 G4cout << "G4ProcessTable::Remove() - arguments are null pointer "
194 << G4endl;
195 }
196#endif
197 return -1;
198 }
199
200#ifdef G4VERBOSE
201 if (verboseLevel>1)
202 {
203 G4cout << "G4ProcessTable::Remove() -";
204 G4cout << " Process[" << aProcess->GetProcessName() << "]";
205 G4cout << " Particle[" << aProcMgr->GetParticleType()->GetParticleName()
206 << "]" << G4endl;
207 }
208#endif
209
210 G4int idxTbl = 0;
211 G4int nidx = fProcTblVector->size();
212 G4ProcTblElement* anElement =nullptr;
213 // loop over all elements
214 for (; idxTbl < nidx; ++idxTbl)
215 {
216 anElement = (*fProcTblVector)[idxTbl];
217 if(!anElement) { continue; }
218
219 // check if this process is included
220 if (aProcess == anElement->GetProcess())
221 {
222 if(anElement->Contains(aProcMgr))
223 {
224 // remove the process manager from the element
225 anElement->Remove(aProcMgr);
226#ifdef G4VERBOSE
227 if (verboseLevel>2)
228 {
229 G4cout << " This Process Manager is removed !! " << G4endl;
230 }
231#endif
232 if(anElement->Length() == 0)
233 {
234 delete anElement;
235 (*fProcTblVector)[idxTbl] = nullptr;
236#ifdef G4VERBOSE
237 if (verboseLevel>1)
238 {
239 G4cout << " This Process is removed !! " << G4endl;
240 }
241#endif
242 }
243 return idxTbl;
244 }
245 }
246 }
247#ifdef G4VERBOSE
248 if (verboseLevel>1)
249 {
250 G4cout << " This Process Manager is not registered to the process!! "
251 << G4endl;
252 }
253#endif
254 return -1;
255}
void Remove(G4ProcessManager *aProcMgr)

Referenced by G4ProcessManager::RemoveProcess().

◆ SetProcessActivation() [1/8]

void G4ProcessTable::SetProcessActivation ( const G4String processName,
const G4ParticleDefinition particle,
G4bool  fActive 
)
inline

◆ SetProcessActivation() [2/8]

void G4ProcessTable::SetProcessActivation ( const G4String processName,
const G4String particleName,
G4bool  fActive 
)

Definition at line 456 of file G4ProcessTable.cc.

459{
460 if (particleName == "ALL" )
461 {
462 SetProcessActivation( processName, fActive);
463 }
464 else
465 {
466 SetProcessActivation(processName,
467 G4ParticleTable::GetParticleTable()->FindParticle(particleName),
468 fActive );
469 }
470}
void SetProcessActivation(const G4String &processName, G4bool fActive)

◆ SetProcessActivation() [3/8]

void G4ProcessTable::SetProcessActivation ( const G4String processName,
G4bool  fActive 
)

Definition at line 492 of file G4ProcessTable.cc.

494{
495#ifdef G4VERBOSE
496 if (verboseLevel>1)
497 {
498 G4cout << " G4ProcessTable::SetProcessActivation() -" ;
499 G4cout << " The Process[" << processName << "] "<< G4endl;
500 }
501#endif
502
503 G4ProcTableVector* pTblVector = Find(processName);
504 G4ProcTblElement* anElement;
505 // loop over all elements
506 for (auto itr=pTblVector->cbegin(); itr!=pTblVector->cend(); ++itr)
507 {
508 anElement = (*itr);
509 G4VProcess* process = anElement->GetProcess();
510 for (G4int idx = 0 ; idx < anElement->Length(); ++idx)
511 {
512 G4ProcessManager* manager = anElement->GetProcessManager(idx);
513 manager->SetProcessActivation(process, fActive);
514#ifdef G4VERBOSE
515 if (verboseLevel>1)
516 {
517 G4cout << " for " << manager->GetParticleType()->GetParticleName();
518 G4cout << " Index = " << manager->GetProcessIndex(process);
519 G4cout << G4endl;
520 }
521#endif
522 }
523 }
524}
G4VProcess * SetProcessActivation(G4VProcess *aProcess, G4bool fActive)
G4int GetProcessIndex(G4VProcess *) const
std::vector< G4ProcTblElement * > G4ProcTableVector

Referenced by G4ProcessTableMessenger::SetNewValue(), and SetProcessActivation().

◆ SetProcessActivation() [4/8]

void G4ProcessTable::SetProcessActivation ( const G4String processName,
G4ProcessManager processManager,
G4bool  fActive 
)

Definition at line 528 of file G4ProcessTable.cc.

531{
532#ifdef G4VERBOSE
533 if (verboseLevel>1)
534 {
535 G4cout << " G4ProcessTable::SetProcessActivation() -" ;
536 G4cout << " The Process[" << processName << "] "<< G4endl;
537 }
538#endif
539
540 G4VProcess* process = FindProcess( processName, processManager);
541 if ( process != nullptr)
542 {
543 processManager->SetProcessActivation(process, fActive);
544#ifdef G4VERBOSE
545 if (verboseLevel>1)
546 {
547 G4cout << " for "
548 << processManager->GetParticleType()->GetParticleName();
549 G4cout << " Index = "
550 << processManager->GetProcessIndex(process) << G4endl;
551 }
552#endif
553 }
554}

◆ SetProcessActivation() [5/8]

void G4ProcessTable::SetProcessActivation ( G4ProcessType  processType,
const G4ParticleDefinition particle,
G4bool  fActive 
)
inline

◆ SetProcessActivation() [6/8]

void G4ProcessTable::SetProcessActivation ( G4ProcessType  processType,
const G4String particleName,
G4bool  fActive 
)

Definition at line 474 of file G4ProcessTable.cc.

477{
478 if ((particleName == "ALL" ) || (particleName == "all" ))
479 {
480 SetProcessActivation( processType, fActive );
481 }
482 else
483 {
484 SetProcessActivation(processType,
485 G4ParticleTable::GetParticleTable()->FindParticle(particleName),
486 fActive );
487 }
488}

◆ SetProcessActivation() [7/8]

void G4ProcessTable::SetProcessActivation ( G4ProcessType  processType,
G4bool  fActive 
)

Definition at line 558 of file G4ProcessTable.cc.

560{
561#ifdef G4VERBOSE
562 if (verboseLevel>1)
563 {
564 G4cout << " G4ProcessTable::SetProcessActivation() -" ;
565 G4cout << " The ProcessType[" << G4int(processType) << "] "<< G4endl;
566 }
567#endif
568
569 G4ProcTableVector* pTblVector = Find(processType);
570 G4ProcTblElement* anElement;
571 // loop over all elements
572 for (auto itr=pTblVector->cbegin(); itr!=pTblVector->cend(); ++itr)
573 {
574 anElement = (*itr);
575 G4VProcess* process = anElement->GetProcess();
576#ifdef G4VERBOSE
577 if (verboseLevel>1)
578 {
579 G4cout << " The Process[" << process->GetProcessName()<< "] "<< G4endl;
580 }
581#endif
582 for (G4int idx = 0 ; idx < anElement->Length(); ++idx)
583 {
584 G4ProcessManager* manager = anElement->GetProcessManager(idx);
585 manager->SetProcessActivation(process, fActive);
586#ifdef G4VERBOSE
587 if (verboseLevel>1)
588 {
589 G4cout << " for " << manager->GetParticleType()->GetParticleName();
590 G4cout << " Index = " << manager->GetProcessIndex(process) << G4endl;
591 }
592#endif
593 }
594 }
595}

◆ SetProcessActivation() [8/8]

void G4ProcessTable::SetProcessActivation ( G4ProcessType  processType,
G4ProcessManager processManager,
G4bool  fActive 
)

Definition at line 599 of file G4ProcessTable.cc.

602{
603#ifdef G4VERBOSE
604 if (verboseLevel>1)
605 {
606 G4cout << " G4ProcessTable::SetProcessActivation() -" ;
607 G4cout << " The ProcessType[" << G4int(processType) << "] "<< G4endl;
608 }
609#endif
610
611 G4ProcessVector* procList = processManager->GetProcessList();
612 for (std::size_t idx = 0; idx < procList->length(); ++idx)
613 {
614 G4VProcess* process = (*procList)(idx);
615 if ( process->GetProcessType() == processType)
616 {
617 processManager->SetProcessActivation(process, fActive);
618#ifdef G4VERBOSE
619 if (verboseLevel>1)
620 {
621 G4cout << " The Process[" << process->GetProcessName()<< "] "<< G4endl;
622 G4cout << " for "
623 << processManager->GetParticleType()->GetParticleName();
624 G4cout << " Index = " << idx << G4endl;
625 }
626#endif
627 }
628 }
629}
G4ProcessVector * GetProcessList() const
std::size_t length() const
G4ProcessType GetProcessType() const
Definition: G4VProcess.hh:388

◆ SetVerboseLevel()

void G4ProcessTable::SetVerboseLevel ( G4int  value)
inline

Friends And Related Function Documentation

◆ G4ThreadLocalSingleton< G4ProcessTable >

friend class G4ThreadLocalSingleton< G4ProcessTable >
friend

Definition at line 1 of file G4ProcessTable.hh.


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