Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -24,34 +24,36 @@
// ********************************************************************
//
//
#ifndef BrachyUserScoreWriter_h
#define BrachyUserScoreWriter_h 1
#include "globals.hh"
#include "G4VScoreWriter.hh"
#include "BrachyAnalysisManager.hh"
/*
// Code developed by:
// S.Guatelli, susanna@uow.edu.au
//
Original code from geant4/examples/extended/runAndEvent/RE03, by M. Asai
Original code from geant4/examples/extended/runAndEvent/RE03,
// by M. Asai
*/
//
// class description:
//
// This class represents storing the scored quantity into a file.
//This class represents storing the scored quantity into a file.
//
class BrachyUserScoreWriter : public G4VScoreWriter {
class BrachyUserScoreWriter:public G4VScoreWriter
{
public:
BrachyUserScoreWriter();
BrachyUserScoreWriter(BrachyAnalysisManager* analysis);
virtual ~BrachyUserScoreWriter();
public:
// store a quantity into a file
void DumpQuantityToFile(const G4String & psName, const G4String & fileName, const G4String & option);
};
void DumpQuantityToFile(const G4String & psName,
const G4String & fileName,
const G4String & option);
private:
BrachyAnalysisManager* analysis;
};
#endif