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 #ifndef scorer_h 27 #define scorer_h 1 28 29 #include "G4DNAMesh.hh" 30 #include "G4THitsMap.hh" 31 #include "G4UIcmdWith3VectorAndUnit.hh" 32 #include "G4UIcmdWithADoubleAndUnit.hh" 33 #include "G4UIcmdWithAString.hh" 34 #include "G4UIcmdWithAnInteger.hh" 35 #include "G4UIdirectory.hh" 36 #include "G4UImessenger.hh" 37 #include "G4VPrimitiveScorer.hh" 38 39 #include <memory> 40 #include <set> 41 42 class G4DNAEventScheduler; 43 44 class G4VAnalysisManager; 45 46 class G4MolecularConfiguration; 47 48 class G4VChemistryWorld; 49 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 51 52 struct Dose : public G4UImessenger 53 { 54 Dose(); 55 56 ~Dose() override = default; 57 58 void SetNewValue(G4UIcommand*, G4String) final; 59 60 std::unique_ptr<G4UIdirectory> fpDoseDir; 61 std::unique_ptr<G4UIcmdWithADoubleAndUnit> fpAddDoseCutOff; 62 std::unique_ptr<G4UIcmdWithADoubleAndUnit> fpAddDoseToAbort; 63 G4double fDosesCutOff = 0; 64 G4double fDosesToAbort = 0; 65 G4double fCumulatedDose = 0; 66 }; 67 68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 69 70 struct Gvalues : public G4UImessenger 71 { 72 Gvalues(); 73 74 ~Gvalues() override = default; 75 76 void SetNewValue(G4UIcommand*, G4String) final; 77 78 G4int fHCID = -1; 79 G4double fTimeLimit; 80 std::unique_ptr<G4UIdirectory> fSpeciesdir; 81 std::unique_ptr<G4UIcmdWithAnInteger> fTimeBincmd; 82 std::unique_ptr<G4UIcmdWithADoubleAndUnit> fAddTimeToRecordcmd; 83 84 G4int fNEvent = 0; 85 G4double fEdep = 0; 86 87 inline void AddTimeToRecord(double time) { fTimeToRecord.insert(time); } 88 89 void WriteWithAnalysisManager(G4VAnalysisManager*, const std::string& out); 90 91 struct SpeciesInfo 92 { 93 SpeciesInfo() = default; 94 95 SpeciesInfo(const SpeciesInfo& right) = default; 96 97 SpeciesInfo& operator=(const SpeciesInfo& right) = default; 98 99 int64_t fNumber = 0; 100 G4double fG = 0; 101 G4double fG2 = 0; 102 }; 103 104 inline auto GetNumberOfRecordedEvents() const { return fNEvent; } 105 106 using Species = const G4MolecularConfiguration; 107 using InnerSpeciesMap = std::map<Species*, SpeciesInfo>; 108 using SpeciesMap = std::map<G4double, InnerSpeciesMap>; 109 SpeciesMap fSpeciesInfoPerTime; 110 std::set<G4double> fTimeToRecord; 111 G4int fRunID = 1; 112 113 inline auto GetSpeciesInfo() const { return fSpeciesInfoPerTime; } 114 }; 115 116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 117 118 template<typename TR> 119 class Scorer : public G4VPrimitiveScorer 120 { 121 public: // with description 122 Scorer(); 123 124 ~Scorer() override = default; 125 126 void Initialize(G4HCofThisEvent*) override; 127 128 void EndOfEvent(G4HCofThisEvent*) override; 129 130 void clear() override; 131 132 G4bool ProcessHits(G4Step*, G4TouchableHistory*) override; 133 134 G4THitsMap<G4double>* GetEventMap() const; 135 136 void AbsorbResultsFromWorkerScorer(G4VPrimitiveScorer*); 137 138 void OutputAndClear(const std::string& out); 139 140 TR* GetpScorer(); 141 142 void SetChemistryWorld(G4VChemistryWorld*); 143 144 G4VChemistryWorld* GetChemistryWorld() const; 145 146 void SaveScavengerChange(); 147 148 void SaveMoleculeCounter(); 149 150 void SetEventScheduler(G4DNAEventScheduler* pEventScheduler) 151 { 152 fpEventScheduler = pEventScheduler; 153 } 154 155 private: 156 std::unique_ptr<TR> fpScorer; 157 G4int fHCID = -1; 158 G4THitsMap<G4double>* fpEvtMap = nullptr; 159 G4VChemistryWorld* fpChemistryWorld = nullptr; 160 G4DNAEventScheduler* fpEventScheduler = nullptr; 161 }; 162 163 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 164 165 template<typename TR> 166 Scorer<TR>::Scorer() : G4VPrimitiveScorer(typeid(TR).name()), fpScorer(new TR) 167 {} 168 169 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 170 171 template<typename TR> 172 TR* Scorer<TR>::GetpScorer() 173 { 174 return fpScorer.get(); 175 } 176 177 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 178 179 template<typename TR> 180 G4THitsMap<G4double>* Scorer<TR>::GetEventMap() const 181 { 182 return fpEvtMap; 183 } 184 185 #endif