Import Geant4 10.5.0 source tree
This commit is contained in:
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: Dicom2ActionInitialization.hh $
|
||||
//
|
||||
/// \file Dicom2ActionInitialization.hh
|
||||
/// \brief Definition of the Dicom2ActionInitialization class
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: Dicom2PrimaryGeneratorAction.hh $
|
||||
//
|
||||
/// \file Dicom2PrimaryGeneratorAction.hh
|
||||
/// \brief Definition of the Dicom2PrimaryGeneratorAction class
|
||||
@@ -38,6 +37,7 @@
|
||||
class G4ParticleGun;
|
||||
class G4Event;
|
||||
class G4Box;
|
||||
class G4VPhysicalVolume;
|
||||
|
||||
/// The primary generator action class with particle gun.
|
||||
///
|
||||
@@ -57,8 +57,12 @@ public:
|
||||
const G4ParticleGun* GetParticleGun() const { return fParticleGun; }
|
||||
|
||||
private:
|
||||
G4ParticleGun* fParticleGun; // pointer a to G4 gun class
|
||||
G4Box* fEnvelopeBox;
|
||||
G4ParticleGun* fParticleGun; // pointer a to G4 gun class
|
||||
G4Box* fEnvelopeBox;
|
||||
G4VPhysicalVolume* fEnvelopeVol;
|
||||
G4ThreeVector fPosCenter;
|
||||
G4ThreeVector fPosDelta;
|
||||
G4double fGeomFactor;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file medical/DICOM/include/Dicom2Run.hh
|
||||
/// \brief Definition of the Dicom2Run class
|
||||
//
|
||||
|
||||
#ifndef Dicom2Run_h
|
||||
#define Dicom2Run_h 1
|
||||
|
||||
#include "G4Run.hh"
|
||||
#include "G4Event.hh"
|
||||
#include "DicomRun.hh"
|
||||
|
||||
#include "G4THitsMap.hh"
|
||||
#include "G4THitsVector.hh"
|
||||
#include "G4StatAnalysis.hh"
|
||||
|
||||
#include <vector>
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
/// Dicom2Run class
|
||||
///
|
||||
/// Demonstrates how to use G4StatAnalysis as a vector of objects
|
||||
/// (instead of vector of pointers to objects) to reduce memory
|
||||
/// consumption
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
class Dicom2Run : public DicomRun
|
||||
{
|
||||
public:
|
||||
typedef G4VTHitsVector<G4StatAnalysis, std::vector<G4StatAnalysis>> Dicom2RunVector;
|
||||
|
||||
public:
|
||||
// constructor and destructor.
|
||||
// vector of multifunctionaldetector name has to given to constructor.
|
||||
Dicom2Run();
|
||||
Dicom2Run(const std::vector<G4String> mfdName);
|
||||
virtual ~Dicom2Run();
|
||||
|
||||
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.
|
||||
Dicom2RunVector* GetHitsVector(G4int i) const {return fRunMap[i];}
|
||||
Dicom2RunVector* GetHitsVector(const G4String& detName,
|
||||
const G4String& colName) const;
|
||||
Dicom2RunVector* GetHitsVector(const G4String& fullName) const;
|
||||
|
||||
void ConstructMFD(const std::vector<G4String>&);
|
||||
|
||||
virtual void Merge(const G4Run*);
|
||||
|
||||
private:
|
||||
std::vector<G4String> fCollName;
|
||||
std::vector<G4int> fCollID;
|
||||
std::vector<Dicom2RunVector*> fRunMap;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,60 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file medical/DICOM/include/Dicom2RunAction.hh
|
||||
/// \brief Definition of the Dicom2RunAction class
|
||||
//
|
||||
|
||||
#ifndef Dicom2RunAction_h
|
||||
#define Dicom2RunAction_h 1
|
||||
|
||||
#include "DicomRunAction.hh"
|
||||
#include "Dicom2Run.hh"
|
||||
#include "globals.hh"
|
||||
#include <vector>
|
||||
|
||||
class G4Run;
|
||||
class Dicom2Run;
|
||||
|
||||
class Dicom2RunAction : public DicomRunAction
|
||||
{
|
||||
public:
|
||||
typedef Dicom2Run::Dicom2RunVector Dicom2RunVector;
|
||||
|
||||
public:
|
||||
// constructor and destructor
|
||||
Dicom2RunAction();
|
||||
virtual ~Dicom2RunAction();
|
||||
|
||||
public:
|
||||
// virtual method from G4UserRunAction.
|
||||
virtual G4Run* GenerateRun() override;
|
||||
virtual void EndOfRunAction(const G4Run* aRun) override;
|
||||
};
|
||||
|
||||
//
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user