Geant4 Cross Reference |
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 // G4ProcTblElement inline methods implementation 27 // 28 // Author: H.Kurashige, 04.08.1998 29 // -------------------------------------------------------------------- 30 31 inline 32 G4bool G4ProcTblElement::Contains(const G4ProcessManager* pManager) const 33 { 34 for (auto i = pProcMgrVector->cbegin(); i!= pProcMgrVector->cend(); ++i) 35 { 36 if (*i==pManager) return true; 37 } 38 return false; 39 } 40 41 // -------------------------------------------------------------------- 42 inline 43 G4int G4ProcTblElement::GetIndex(const G4ProcessManager* pManager) const 44 { 45 G4int index = 0; 46 for (auto i = pProcMgrVector->cbegin(); i!= pProcMgrVector->cend(); ++i) 47 { 48 if (*i==pManager) return index; 49 index +=1; 50 } 51 return -1; 52 } 53 54 // -------------------------------------------------------------------- 55 inline 56 G4int G4ProcTblElement::Length() const 57 { 58 return G4int(pProcMgrVector->size()); 59 } 60 61 // -------------------------------------------------------------------- 62 inline 63 G4ProcessManager* G4ProcTblElement::GetProcessManager(G4int index) const 64 { 65 if ((index < G4int(pProcMgrVector->size())) && (index>=0)) 66 { 67 return (*pProcMgrVector)[index]; 68 } 69 else 70 { 71 return nullptr; 72 } 73 } 74 75 // -------------------------------------------------------------------- 76 inline 77 G4VProcess* G4ProcTblElement::GetProcess() const 78 { 79 return pProcess; 80 } 81 82 // -------------------------------------------------------------------- 83 inline 84 void G4ProcTblElement::Insert(G4ProcessManager* aProcMgr) 85 { 86 pProcMgrVector->push_back(aProcMgr); 87 } 88 89 // -------------------------------------------------------------------- 90 inline 91 void G4ProcTblElement::Remove(G4ProcessManager* aProcMgr) 92 { 93 for (auto i = pProcMgrVector->cbegin(); i!= pProcMgrVector->cend(); ++i) 94 { 95 if (*i==aProcMgr) 96 { 97 pProcMgrVector->erase(i); 98 break; 99 } 100 } 101 } 102 103 // -------------------------------------------------------------------- 104 inline 105 const G4String& G4ProcTblElement::GetProcessName() const 106 { 107 return pProcess->GetProcessName(); 108 } 109 110 // -------------------------------------------------------------------- 111 inline const std::vector<G4ProcessManager*>* 112 G4ProcTblElement::GetProcMgrVector() const 113 { 114 return pProcMgrVector; 115 } 116