// // ******************************************************************** // * 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: DicomRun.hh 74809 2013-10-22 09:49:26Z gcosmo $ // /// \file medical/DICOM/include/DicomRun.hh /// \brief Definition of the DicomRun class // #ifndef DicomRun_h #define DicomRun_h 1 #include "G4Run.hh" #include "G4Event.hh" #include "G4THitsMap.hh" #include //--------------------------------------------------------------------- /// DicomRun class /// /// Example implementation for multi-functional-detector and /// primitive scorer. /// This DicomRun class has collections which accumulate /// a event information into a run information. //--------------------------------------------------------------------- class DicomRun : public G4Run { public: // constructor and destructor. // vector of multifunctionaldetector name has to given to constructor. DicomRun(); DicomRun(const std::vector mfdName); virtual ~DicomRun(); public: // virtual method from G4Run. // The method is overriden in this class for scoring. virtual void RecordEvent(const G4Event*); // Access methods for scoring information. // - Number of HitsMap for this RUN. // This is equal to number of collections. G4int GetNumberOfHitsMap() const {return fRunMap.size();} // - Get HitsMap of this RUN. // by sequential number, by multifucntional name and collection name, // and by collection name with full path. G4THitsMap* GetHitsMap(G4int i) const {return fRunMap[i];} G4THitsMap* GetHitsMap(const G4String& detName, const G4String& colName) const; G4THitsMap* GetHitsMap(const G4String& fullName) const; void ConstructMFD(const std::vector&); virtual void Merge(const G4Run*); private: std::vector fCollName; std::vector fCollID; std::vector*> fRunMap; }; //========================================================================== // Generic Functions to help with merge //========================================================================== template inline void copy(std::vector& main, const std::vector& data) { //std::cout << "Main size :: " << main.size() << G4endl; //std::cout << "Data size :: " << data.size() << G4endl; for(unsigned i = main.size(); i < data.size(); ++i) { main.push_back(data.at(i)); } } //========================================================================== template inline unsigned copy(std::vector& main, const std::vector& data) { unsigned size_diff = data.size() - main.size(); for(unsigned i = main.size(); i < data.size(); ++i) { main.push_back(new T(*data.at(i))); } return size_diff; } //========================================================================== template inline void print(const std::vector& data) { G4cout << G4endl; for(unsigned i = 0; i < data.size(); ++i) { G4cout << "\t\t" << i << " \t\t " << data.at(i) << G4endl; } G4cout << G4endl; } //========================================================================== #endif