Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 << 22 // >> 23 // the GEANT4 collaboration. >> 24 // >> 25 // By copying, distributing or modifying the Program (or any work >> 26 // based on the Program) you indicate your acceptance of this statement, >> 27 // and all its terms. >> 28 // >> 29 // $Id: G4VParticlePropertyReporter.cc,v 1.1 2003/09/21 19:38:50 kurasige Exp $ >> 30 // GEANT4 tag $Name: geant4-06-00-patch-01 $ >> 31 // >> 32 // >> 33 // --------------------------------------------------------------- 26 #include "G4VParticlePropertyReporter.hh" 34 #include "G4VParticlePropertyReporter.hh" 27 35 28 #include "G4ParticleDefinition.hh" << 36 //////////////////////////// 29 #include "G4ParticleTable.hh" << 30 << 31 G4VParticlePropertyReporter::G4VParticleProper 37 G4VParticlePropertyReporter::G4VParticlePropertyReporter() 32 { 38 { 33 pPropertyTable = G4ParticlePropertyTable::Ge << 39 pPropertyTable = G4ParticlePropertyTable::GetParticlePropertyTable(); 34 } 40 } 35 41 >> 42 ///////////////////////////// 36 G4VParticlePropertyReporter::~G4VParticlePrope 43 G4VParticlePropertyReporter::~G4VParticlePropertyReporter() 37 { 44 { 38 pList.clear(); 45 pList.clear(); 39 pPropertyTable->Clear(); 46 pPropertyTable->Clear(); 40 } << 47 } 41 48 >> 49 /////////////////////////// 42 G4bool G4VParticlePropertyReporter::FillList(G 50 G4bool G4VParticlePropertyReporter::FillList(G4String name) 43 { 51 { 44 G4ParticlePropertyData* pData = pPropertyTab 52 G4ParticlePropertyData* pData = pPropertyTable->GetParticleProperty(name); 45 G4bool result = false; 53 G4bool result = false; 46 if (pData != nullptr) { << 54 if (pData != 0) { 47 // the particle exists << 55 //the particle exists 48 pList.push_back(pData); 56 pList.push_back(pData); 49 result = true; 57 result = true; 50 } << 58 } else { 51 else { << 52 // pointer to the particle table 59 // pointer to the particle table 53 G4ParticleTable* theParticleTable = G4Part 60 G4ParticleTable* theParticleTable = G4ParticleTable::GetParticleTable(); 54 G4ParticleTable::G4PTblDicIterator* thePar 61 G4ParticleTable::G4PTblDicIterator* theParticleIterator; 55 theParticleIterator = theParticleTable->Ge 62 theParticleIterator = theParticleTable->GetIterator(); 56 << 63 57 // loop over all particles in G4ParticleTa << 64 // loop over all particles in G4ParticleTable 58 theParticleIterator->reset(); 65 theParticleIterator->reset(); 59 while ((*theParticleIterator)()) { // Loo << 66 while( (*theParticleIterator)() ){ 60 G4ParticleDefinition* particle = thePart 67 G4ParticleDefinition* particle = theParticleIterator->value(); 61 G4String type = particle->GetParticleTyp 68 G4String type = particle->GetParticleType(); 62 pData = pPropertyTable->GetParticlePrope << 69 pData =pPropertyTable->GetParticleProperty(particle); 63 if (name == "all") { << 70 if ( name == "all" ) { 64 pList.push_back(pData); << 71 pList.push_back(pData); 65 result = true; 72 result = true; 66 } << 73 } else if ( name == type ) { 67 else if (name == type) { << 74 pList.push_back(pData); 68 pList.push_back(pData); << 69 result = true; 75 result = true; 70 } << 76 } 71 } 77 } 72 } 78 } 73 return result; 79 return result; 74 } 80 } 75 81 76 void G4VParticlePropertyReporter::Clear() 82 void G4VParticlePropertyReporter::Clear() 77 { 83 { 78 pList.clear(); 84 pList.clear(); 79 } 85 } >> 86 >> 87 >> 88 >> 89 >> 90 >> 91 >> 92 >> 93 80 94