Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. * 10 // * * 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitation of liability. * 17 // * * 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************************************** 25 // 26 // This example is provided by the Geant4-DNA collaboration 27 // Any report or published results obtained using the Geant4-DNA software 28 // shall cite the following Geant4-DNA collaboration publication: 29 // Med. Phys. 37 (2010) 4692-4708 30 // J. Comput. Phys. 274 (2014) 841-882 31 // Phys. Med. Biol. 63(10) (2018) 105014-12pp 32 // The Geant4-DNA web site is available at http://geant4-dna.org 33 // 34 // 35 #ifndef CHEM5_ScoreSpecies_h 36 #define CHEM5_ScoreSpecies_h 1 37 38 #include "G4THitsMap.hh" 39 #include "G4VPrimitiveScorer.hh" 40 41 #include <set> 42 43 class G4MolecularConfiguration; 44 45 /** \file ScoreSpecies.hh*/ 46 47 // Description: 48 // This is a primitive scorer class for scoring the radiolitic species 49 // produced after irradiation in a water volume 50 // 51 // Created: 2018-09-20 by J. Ramos-Mendez based on chem4 from 52 // M. Karamitros 53 54 class ScoreSpecies : public G4VPrimitiveScorer 55 { 56 public: 57 ScoreSpecies(G4String name, G4int depth = 0); 58 59 virtual ~ScoreSpecies(); 60 61 /** Add a time at which the number of species should be recorded. 62 Default times are set up to 1 microsecond.*/ 63 inline void AddTimeToRecord(double time) { fTimeToRecord.insert(time); } 64 65 /** Remove all times to record, must be reset by user.*/ 66 inline void ClearTimeToRecord() { fTimeToRecord.clear(); } 67 68 /** Get number of recorded events*/ 69 inline int GetNumberOfRecordedEvents() const { return fNEvent; } 70 71 /** Write results to an text file*/ 72 void ASCII(); 73 74 struct SpeciesInfo 75 { 76 SpeciesInfo() 77 { 78 fNumber = 0; 79 fG = 0.; 80 fG2 = 0.; 81 } 82 SpeciesInfo(const SpeciesInfo& right) // Species A(B); 83 { 84 fNumber = right.fNumber; 85 fG = right.fG; 86 fG2 = right.fG2; 87 } 88 SpeciesInfo& operator=(const SpeciesInfo& right) // A = B 89 { 90 if (&right == this) return *this; 91 fNumber = right.fNumber; 92 fG = right.fG; 93 fG2 = right.fG2; 94 return *this; 95 } 96 int fNumber; 97 double fG; 98 double fG2; 99 }; 100 101 private: 102 typedef const G4MolecularConfiguration Species; 103 typedef std::map<Species*, SpeciesInfo> InnerSpeciesMap; 104 typedef std::map<double, InnerSpeciesMap> SpeciesMap; 105 SpeciesMap fSpeciesInfoPerTime; 106 107 std::set<G4double> fTimeToRecord; 108 109 int fNEvent; // number of processed events 110 double fEdep; // total energy deposition 111 112 protected: 113 virtual G4bool ProcessHits(G4Step*, G4TouchableHistory*); 114 115 public: 116 virtual void Initialize(G4HCofThisEvent*); 117 virtual void EndOfEvent(G4HCofThisEvent*); 118 virtual void DrawAll(); 119 virtual void PrintAll(); 120 /** Method used in multithreading mode in order to merge 121 the results*/ 122 virtual void AbsorbResultsFromWorkerScorer(G4VPrimitiveScorer*); 123 virtual void OutputAndClear(); 124 125 SpeciesMap GetSpeciesInfo() { return fSpeciesInfoPerTime; } 126 127 private: 128 G4int fHCID; 129 G4THitsMap<G4double>* fEvtMap; 130 }; 131 #endif 132