Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DicomRun.hh
Go to the documentation of this file.
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 // $Id: DicomRun.hh 74809 2013-10-22 09:49:26Z gcosmo $
27 //
28 /// \file medical/DICOM/include/DicomRun.hh
29 /// \brief Definition of the DicomRun class
30 //
31 
32 #ifndef DicomRun_h
33 #define DicomRun_h 1
34 
35 #include "G4Run.hh"
36 #include "G4Event.hh"
37 
38 #include "G4THitsMap.hh"
39 #include <vector>
40 
41 //---------------------------------------------------------------------
42 /// DicomRun class
43 ///
44 /// Example implementation for multi-functional-detector and
45 /// primitive scorer.
46 /// This DicomRun class has collections which accumulate
47 /// a event information into a run information.
48 //---------------------------------------------------------------------
49 
50 class DicomRun : public G4Run {
51 
52 public:
53  // constructor and destructor.
54  // vector of multifunctionaldetector name has to given to constructor.
55  DicomRun();
56  DicomRun(const std::vector<G4String> mfdName);
57  virtual ~DicomRun();
58 
59 public:
60  // virtual method from G4Run.
61  // The method is overriden in this class for scoring.
62  virtual void RecordEvent(const G4Event*);
63 
64  // Access methods for scoring information.
65  // - Number of HitsMap for this RUN.
66  // This is equal to number of collections.
67  G4int GetNumberOfHitsMap() const {return fRunMap.size();}
68  // - Get HitsMap of this RUN.
69  // by sequential number, by multifucntional name and collection name,
70  // and by collection name with full path.
71  G4THitsMap<G4double>* GetHitsMap(G4int i) const {return fRunMap[i];}
72  G4THitsMap<G4double>* GetHitsMap(const G4String& detName,
73  const G4String& colName) const;
74  G4THitsMap<G4double>* GetHitsMap(const G4String& fullName) const;
75 
76  void ConstructMFD(const std::vector<G4String>&);
77 
78  virtual void Merge(const G4Run*);
79 
80 private:
81  std::vector<G4String> fCollName;
82  std::vector<G4int> fCollID;
83  std::vector<G4THitsMap<G4double>*> fRunMap;
84 
85 };
86 
87 //==========================================================================
88 // Generic Functions to help with merge
89 //==========================================================================
90 template <typename T>
91 inline void copy(std::vector<T>& main, const std::vector<T>& data)
92 {
93  //std::cout << "Main size :: " << main.size() << G4endl;
94  //std::cout << "Data size :: " << data.size() << G4endl;
95  for(unsigned i = main.size(); i < data.size(); ++i) {
96  main.push_back(data.at(i));
97  }
98 }
99 //==========================================================================
100 template <typename T>
101 inline unsigned copy(std::vector<T*>& main, const std::vector<T*>& data)
102 {
103  unsigned size_diff = data.size() - main.size();
104  for(unsigned i = main.size(); i < data.size(); ++i) {
105  main.push_back(new T(*data.at(i)));
106  }
107  return size_diff;
108 }
109 //==========================================================================
110 template <typename T>
111 inline void print(const std::vector<T>& data)
112 {
113  G4cout << G4endl;
114  for(unsigned i = 0; i < data.size(); ++i) {
115  G4cout << "\t\t" << i << " \t\t " << data.at(i) << G4endl;
116  }
117  G4cout << G4endl;
118 }
119 //==========================================================================
120 
121 #endif
virtual void Merge(const G4Run *)
Definition: DicomRun.cc:185
virtual void RecordEvent(const G4Event *)
Definition: DicomRun.cc:147
int main(int argc, char **argv)
Definition: genwindef.cpp:30
void ConstructMFD(const std::vector< G4String > &)
Definition: DicomRun.cc:100
virtual ~DicomRun()
Definition: DicomRun.cc:84
int G4int
Definition: G4Types.hh:78
G4int GetNumberOfHitsMap() const
Definition: DicomRun.hh:67
void copy(std::vector< T > &main, const std::vector< T > &data)
Definition: DicomRun.hh:91
G4GLOB_DLL std::ostream G4cout
DicomRun()
Definition: DicomRun.cc:67
Definition: G4Run.hh:46
#define G4endl
Definition: G4ios.hh:61
G4THitsMap< G4double > * GetHitsMap(G4int i) const
Definition: DicomRun.hh:71
void print(const std::vector< T > &data)
Definition: DicomRun.hh:111
const XML_Char const XML_Char * data