// // ******************************************************************** // * 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: G4WeightWindowStore.cc,v 1.5 2006/06/29 18:18:05 gunter Exp $ // GEANT4 tag $Name: geant4-09-02-ref-02 $ // // ---------------------------------------------------------------------- // GEANT 4 class source file // // G4WeightWindowStore // // ---------------------------------------------------------------------- #include "G4WeightWindowStore.hh" #include "G4VPhysicalVolume.hh" #include "G4LogicalVolume.hh" #include "G4GeometryCellStepStream.hh" G4WeightWindowStore:: G4WeightWindowStore(const G4VPhysicalVolume &worldvolume) : fWorldVolume(worldvolume), fGeneralUpperEnergyBounds(), fCellToUpEnBoundLoWePairsMap(), fCurrentIterator(fCellToUpEnBoundLoWePairsMap.end()) {} G4WeightWindowStore::~G4WeightWindowStore() {} G4double G4WeightWindowStore::GetLowerWeitgh(const G4GeometryCell &gCell, G4double partEnergy) const { SetInternalIterator(gCell); if (fCurrentIterator == fCellToUpEnBoundLoWePairsMap.end()) { Error("GetLowerWitgh: Cell does not exist"); } G4UpperEnergyToLowerWeightMap upEnLoWeiPairs = fCurrentIterator->second; G4double lowerWeight = -1; G4bool found = false; for (G4UpperEnergyToLowerWeightMap::iterator it = upEnLoWeiPairs.begin(); it != upEnLoWeiPairs.end(); it++) { if (partEnergy < it->first) { lowerWeight = it->second; found = true; break; } } if (!found) { G4cout << "energy: " << partEnergy << G4endl; Error("GetLowerWitgh: couldn't find lower weight bound"); } return lowerWeight; } void G4WeightWindowStore:: SetInternalIterator(const G4GeometryCell &gCell) const { fCurrentIterator = fCellToUpEnBoundLoWePairsMap.find(gCell); } G4bool G4WeightWindowStore:: IsInWorld(const G4VPhysicalVolume &aVolume) const { G4bool isIn(true); if (!(aVolume == fWorldVolume)) { isIn = fWorldVolume.GetLogicalVolume()->IsAncestor(&aVolume); } return isIn; } G4bool G4WeightWindowStore::IsKnown(const G4GeometryCell &gCell) const { G4bool inWorldKnown(IsInWorld(gCell.GetPhysicalVolume())); if ( inWorldKnown ) { SetInternalIterator(gCell); inWorldKnown = (fCurrentIterator!=fCellToUpEnBoundLoWePairsMap.end()); } return inWorldKnown; } const G4VPhysicalVolume &G4WeightWindowStore::GetWorldVolume() const { return fWorldVolume; } void G4WeightWindowStore:: AddLowerWeights(const G4GeometryCell & gCell, const std::vector &lowerWeights) { if (fGeneralUpperEnergyBounds.empty()) { Error("AddLowerWeights: no general upper energy limits set"); } if (IsKnown(gCell)) { Error("AddLowerWeights: the cell is already in the store"); } if (lowerWeights.size() != fGeneralUpperEnergyBounds.size()) { Error("missmatch between number of lower weights and energy bounds"); } G4UpperEnergyToLowerWeightMap m; G4int i = 0; for (std::set >::iterator it = fGeneralUpperEnergyBounds.begin(); it != fGeneralUpperEnergyBounds.end(); it++) { m[*it] = lowerWeights[i]; i++; } fCellToUpEnBoundLoWePairsMap[gCell] = m; } void G4WeightWindowStore:: AddUpperEboundLowerWeightPairs(const G4GeometryCell &gCell, const G4UpperEnergyToLowerWeightMap& enWeMap) { if (IsKnown(gCell)) { Error("AddUpperEboundLowerWeightPairs: the cell is already in the store"); } if (IsKnown(gCell)) { Error("AddUpperEboundLowerWeightPairs: the cell is already in the store"); } fCellToUpEnBoundLoWePairsMap[gCell] = enWeMap; } void G4WeightWindowStore:: SetGeneralUpperEnergyBounds(const std::set > &enBounds) { if (!fGeneralUpperEnergyBounds.empty()) { Error("SetGeneralUpperEnergyBounds: energy bounds already set"); } fGeneralUpperEnergyBounds = enBounds; } void G4WeightWindowStore::Error(const G4String &m) const { G4cerr << "ERROR - G4WeightWindowStore: " << m << G4endl; G4Exception("G4WeightWindowStore::Error()", "FatalException", FatalException, m); }