// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4IStore.cc,v 1.14 2006/06/29 18:17:18 gunter Exp $ // GEANT4 tag $Name: geant4-09-03 $ // // ---------------------------------------------------------------------- // GEANT 4 class source file // // G4IStore.cc // // ---------------------------------------------------------------------- #include "G4IStore.hh" #include "G4VPhysicalVolume.hh" #include "G4GeometryCell.hh" #include "G4GeometryCellStepStream.hh" #include "G4LogicalVolume.hh" G4IStore::G4IStore(const G4VPhysicalVolume &worldvolume) : fWorldVolume(worldvolume) {} G4IStore::~G4IStore() {} const G4VPhysicalVolume &G4IStore::GetWorldVolume() const { return fWorldVolume; } void G4IStore::SetInternalIterator(const G4GeometryCell &gCell) const { fCurrentIterator = fGeometryCelli.find(gCell); } void G4IStore::AddImportanceGeometryCell(G4double importance, const G4GeometryCell &gCell){ if (importance < 0 ) { Error("AddImportanceGeometryCell: invalid importance value given"); } if (!IsInWorld(gCell.GetPhysicalVolume()) ) { Error("AddImportanceGeometryCell: physical volume not in this World"); } SetInternalIterator(gCell); if (fCurrentIterator!=fGeometryCelli.end()) { Error("AddImportanceGeometryCell: Region allready exists"); } fGeometryCelli[gCell] = importance; } void G4IStore::AddImportanceGeometryCell(G4double importance, const G4VPhysicalVolume &aVolume, G4int aRepNum) { AddImportanceGeometryCell(importance, G4GeometryCell(aVolume, aRepNum)); } void G4IStore::ChangeImportance(G4double importance, const G4GeometryCell &gCell){ if (importance < 0 ) { Error("ChangeImportance: Invalid importance value given"); } if (!IsInWorld(gCell.GetPhysicalVolume()) ) { Error("ChangeImportance: physical volume not in this World"); } SetInternalIterator(gCell); if (fCurrentIterator==fGeometryCelli.end()) { Error("ChangeImportance: Region does not exist"); } fGeometryCelli[gCell] = importance; } void G4IStore::ChangeImportance(G4double importance, const G4VPhysicalVolume &aVolume, G4int aRepNum) { ChangeImportance(importance, G4GeometryCell(aVolume, aRepNum)); } G4double G4IStore::GetImportance(const G4VPhysicalVolume &aVolume, G4int aRepNum) const { SetInternalIterator(G4GeometryCell(aVolume, aRepNum)); if (fCurrentIterator==fGeometryCelli.end()) { Error("GetImportance: Region does not exist"); } return (*fCurrentIterator).second; } G4double G4IStore::GetImportance(const G4GeometryCell &gCell) const { SetInternalIterator(gCell); if (fCurrentIterator==fGeometryCelli.end()) { G4cout << "PGeometryCell gCell: " << gCell << G4endl; G4cout << "Not found in: " << G4endl; G4cout << fGeometryCelli << G4endl; Error("GetImportance(gCell): Region does not exist"); } return (*fCurrentIterator).second; } G4bool G4IStore::IsKnown(const G4GeometryCell &gCell) const { G4bool inWorldKnown(IsInWorld(gCell.GetPhysicalVolume())); if ( inWorldKnown ) { SetInternalIterator(gCell); inWorldKnown = (fCurrentIterator!=fGeometryCelli.end()); } return inWorldKnown; } G4bool G4IStore::IsInWorld(const G4VPhysicalVolume &aVolume) const { G4bool isIn(true); if (!(aVolume == fWorldVolume)) { isIn = fWorldVolume.GetLogicalVolume()->IsAncestor(&aVolume); } return isIn; } void G4IStore::Error(const G4String &m) const { G4cerr << "ERROR - G4IStore::" << m << G4endl; G4Exception("G4IStore::Error()", "FatalException", FatalException, m); }