Import Geant4 10.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 14:11:04 +02:00
parent c9b32a6c0a
commit d4af681f38
4886 changed files with 420149 additions and 1023309 deletions
@@ -27,7 +27,7 @@
/// \brief Definition of the F02DetectorConstruction class
//
//
// $Id: F02DetectorConstruction.hh 77484 2013-11-25 10:11:57Z gcosmo $
// $Id: F02DetectorConstruction.hh 90340 2015-05-26 08:38:06Z gcosmo $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -96,11 +96,11 @@ class F02DetectorConstruction : public G4VUserDetectorConstruction
G4LogicalVolume* GetLogicalAbsorber() {return fLogicAbsorber;}
private:
F02DetectorMessenger* fDetectorMessenger; // pointer -> Messenger
G4Cache<F02CalorimeterSD*> fCalorimeterSD; // pointer -> sensitive detector
G4Cache<F02ElectricFieldSetup*> fEmFieldSetup;
G4Tubs* fSolidWorld; // pointer to the solid World
G4LogicalVolume* fLogicWorld; // pointer to the logical World
G4VPhysicalVolume* fPhysiWorld; // pointer to the physical World
@@ -136,7 +136,6 @@ inline void F02DetectorConstruction::ComputeCalorParameters()
fZStartAbs = fZAbsorber-0.5*fAbsorberThickness;
fZEndAbs = fZAbsorber+0.5*fAbsorberThickness;
}
#endif
@@ -27,7 +27,7 @@
/// \brief Definition of the F02EventAction class
//
//
// $Id: F02EventAction.hh 76247 2013-11-08 11:18:52Z gcosmo $
// $Id: F02EventAction.hh 92497 2015-09-02 07:23:12Z gcosmo $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -40,7 +40,6 @@
#include "G4UserEventAction.hh"
class F02RunAction;
class F02EventActionMessenger;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -54,17 +53,8 @@ class F02EventAction : public G4UserEventAction
virtual void BeginOfEventAction(const G4Event*);
virtual void EndOfEventAction(const G4Event*);
void SetEventVerbose(G4int level) {fVerboseLevel = level;}
void SetPrintModulo(G4int val) {fPrintModulo = val;}
private:
G4int fCalorimeterCollID;
F02EventActionMessenger* fEventMessenger;
F02RunAction* fRunAction;
G4int fVerboseLevel;
G4int fPrintModulo;
};
#endif
@@ -1,61 +0,0 @@
//
// ********************************************************************
// * 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 field/field02/include/F02EventActionMessenger.hh
/// \brief Definition of the F02EventActionMessenger class
//
//
// $Id: F02EventActionMessenger.hh 76247 2013-11-08 11:18:52Z gcosmo $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#ifndef F02EventActionMessenger_h
#define F02EventActionMessenger_h 1
#include "G4UImessenger.hh"
class F02EventAction;
class G4UIcmdWithAnInteger;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class F02EventActionMessenger: public G4UImessenger
{
public:
F02EventActionMessenger(F02EventAction*);
virtual ~F02EventActionMessenger();
virtual void SetNewValue(G4UIcommand*, G4String);
private:
F02EventAction* fEventAction;
G4UIcmdWithAnInteger* fSetVerboseCmd;
G4UIcmdWithAnInteger* fPrintCmd;
};
#endif