Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // 27 // WARNING : This class is released as a proto 28 // It might strongly evolve or even disapear i 29 // 30 // ------------------------------------------- 31 // GEANT 4 class implementation file 32 // 33 // History: first implementation by Alfon 34 // 35 // ------------------------------------------- 36 37 #include "G4MolecularDissociationTable.hh" 38 #include "G4MolecularDissociationChannel.hh" 39 #include "G4MolecularConfiguration.hh" 40 41 using namespace std; 42 using namespace G4DNA; 43 44 //____________________________________________ 45 46 G4MolecularDissociationTable::G4MolecularDisso 47 = default; 48 49 //____________________________________________ 50 51 G4MolecularDissociationTable::~G4MolecularDiss 52 { 53 auto it_map = fDissociationChannels.begin(); 54 55 for (; it_map != fDissociationChannels.end() 56 { 57 vector<const G4MolecularDissociationChanne 58 ->second; 59 if (!decayChannels.empty()) 60 { 61 for (auto & decayChannel : decayChannels 62 { 63 if (decayChannel != nullptr) 64 { 65 delete decayChannel; 66 decayChannel = nullptr; 67 } 68 } 69 decayChannels.clear(); 70 } 71 } 72 fDissociationChannels.clear(); 73 } 74 75 //____________________________________________ 76 77 G4MolecularDissociationTable:: 78 G4MolecularDissociationTable(const G4Molecul 79 { 80 *this = right; 81 } 82 83 //____________________________________________ 84 85 G4MolecularDissociationTable& 86 G4MolecularDissociationTable::operator=(const 87 { 88 if(this == &right) return *this; 89 fDissociationChannels = right.fDissociationC 90 return *this; 91 } 92 93 //____________________________________________ 94 95 const vector<const G4MolecularDissociationChan 96 G4MolecularDissociationTable:: 97 GetDecayChannels(const G4MolecularConfigurat 98 { 99 auto it_exstates = fDissociationChannels.fin 100 if (it_exstates == fDissociationChannels.end 101 return &(it_exstates->second); 102 } 103 104 //____________________________________________ 105 106 const vector<const G4MolecularDissociationChan 107 G4MolecularDissociationTable::GetDecayChannels 108 { 109 for(const auto & fDissociationChannel : fDis 110 { 111 if(fDissociationChannel.first->GetLabel() 112 } 113 return nullptr; 114 } 115 116 //____________________________________________ 117 118 //void G4MolecularDissociationTable:: 119 // AddExcitedState(const G4String& label, 120 // const G4MolecularConfigura 121 //{ 122 // 123 //} 124 125 //____________________________________________ 126 127 void G4MolecularDissociationTable:: 128 AddChannel(const G4MolecularConfiguration* m 129 const G4MolecularDissociationChan 130 { 131 fDissociationChannels[molConf].push_back(cha 132 } 133 134 //____________________________________________ 135 136 void G4MolecularDissociationTable::CheckDataCo 137 { 138 ChannelMap::const_iterator channelsIter; 139 140 for(channelsIter = fDissociationChannels.beg 141 channelsIter != fDissociationChannels.en 142 { 143 144 const vector<const G4MolecularDissociation 145 channelsIter->second; 146 G4double sum = 0; 147 148 G4double max = decayVect.size(); 149 150 for(size_t i = 0; i < max; i++) 151 { 152 const G4MolecularDissociationChannel* de 153 const G4double prob = decay->GetProbabil 154 sum += prob; 155 } 156 157 if(sum != 1) 158 { 159 G4ExceptionDescription errMsg; 160 errMsg << "The probabilities for deecita 161 << channelsIter->first->GetName() 162 << " with label :" << channelsIt 163 << " don't sum up to 1"; 164 G4Exception("G4MolecularDissociationTabl 165 "BRANCHING_RATIOS_CONSISTENC 166 FatalErrorInArgument, 167 errMsg); 168 } 169 } 170 } 171 172 void G4MolecularDissociationTable::Serialize(s 173 { 174 // TODO 175 } 176