Files
geant4/examples/advanced/underground_physics/src/DMXEventActionMessenger.cc
T
2016-06-09 14:44:26 +02:00

161 lines
5.6 KiB
C++

//
// ********************************************************************
// * 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. *
// ********************************************************************
//
//
// --------------------------------------------------------------
// GEANT 4 - Underground Dark Matter Detector Advanced Example
//
// For information related to this code contact: Alex Howard
// e-mail: alexander.howard@cern.ch
// --------------------------------------------------------------
// Comments
//
// Underground Advanced
// by A. Howard and H. Araujo
// (27th November 2001)
//
// EventActionMessenger program
// --------------------------------------------------------------
#include "DMXEventActionMessenger.hh"
#include <sstream>
#include "DMXEventAction.hh"
#include "G4UIdirectory.hh"
#include "G4UIcmdWithAString.hh"
#include "G4UIcmdWithAnInteger.hh"
#include "G4UIcmdWithABool.hh"
#include "G4UIcommand.hh"
#include "globals.hh"
DMXEventActionMessenger::DMXEventActionMessenger(DMXEventAction* EvAct)
:eventAction(EvAct){
// saving event information
dmxDirectory = new G4UIdirectory("/dmx/");
dmxDirectory->SetGuidance("DM Example commands.");
SavePmtCmd = new G4UIcmdWithABool("/dmx/savePmt",this);
SavePmtCmd->SetGuidance("Set flag to save (x,y,z) of hits in PMT");
SavePmtCmd->SetGuidance("into file 'pmt.out'");
SavePmtCmd->SetGuidance("Default = false");
SavePmtCmd->SetParameterName("savePmtFlag", false);
SaveHitsCmd = new G4UIcmdWithABool("/dmx/saveHits",this);
SaveHitsCmd->SetGuidance("Set flag to save hits in each run");
SaveHitsCmd->SetGuidance("into file 'hits.out'");
SaveHitsCmd->SetGuidance("Default = true");
SaveHitsCmd->SetParameterName("saveHitsFlag", false);
// drawing event
drawDirectory = new G4UIdirectory("/dmx/draw/");
drawDirectory->SetGuidance("DM Example draw commands.");
DrawColsCmd = new G4UIcmdWithAString("/dmx/draw/drawColours",this);
DrawColsCmd->SetGuidance("Tracks drawn by Event (standard colours) or by Step (custom colours)");
DrawColsCmd->SetGuidance(" Choice : custom, standard(default)");
DrawColsCmd->SetParameterName("drawColsFlag", false);
DrawColsCmd->SetCandidates("custom standard");
DrawColsCmd->AvailableForStates(G4State_Idle);
DrawTrksCmd = new G4UIcmdWithAString("/dmx/draw/drawTracks",this);
DrawTrksCmd->SetGuidance("Draw the tracks in the event");
DrawTrksCmd->SetGuidance(" Choice : none, charged, noscint, all(default)");
DrawTrksCmd->SetParameterName("drawTrksFlag", false);
DrawTrksCmd->SetCandidates("none charged noscint all");
DrawTrksCmd->AvailableForStates(G4State_Idle);
DrawHitsCmd = new G4UIcmdWithABool("/dmx/draw/drawHits",this);
DrawHitsCmd->SetGuidance("Set flag to draw hits in PMT.");
DrawHitsCmd->SetGuidance("Default = true");
DrawHitsCmd->SetParameterName("drawHitsFlag", false);
DrawHitsCmd->SetDefaultValue(true);
PrintCmd = new G4UIcmdWithAnInteger("/dmx/printModulo",this);
PrintCmd->SetGuidance("Print events modulo n");
PrintCmd->SetParameterName("EventNb",false);
PrintCmd->SetRange("EventNb>0");
PrintCmd->AvailableForStates(G4State_Idle);
}
DMXEventActionMessenger::~DMXEventActionMessenger() {
delete SavePmtCmd;
delete SaveHitsCmd;
delete dmxDirectory;
delete DrawColsCmd;
delete DrawTrksCmd;
delete DrawHitsCmd;
delete drawDirectory;
delete PrintCmd;
}
void DMXEventActionMessenger::SetNewValue
(G4UIcommand* command, G4String newValue) {
if(command == DrawColsCmd)
eventAction->SetDrawColsFlag(newValue);
if(command == DrawTrksCmd)
eventAction->SetDrawTrksFlag(newValue);
if(command == DrawHitsCmd) {
G4int vl;
const char* t = newValue;
std::istringstream is(t);
is >> vl;
eventAction->SetDrawHitsFlag(vl!=0);
}
if(command == SavePmtCmd) {
G4int vl;
const char* t = newValue;
std::istringstream is(t);
is >> vl;
eventAction->SetSavePmtFlag(vl!=0);
}
if(command == SaveHitsCmd) {
G4int vl;
const char* t = newValue;
std::istringstream is(t);
is >> vl;
eventAction->SetSaveHitsFlag(vl!=0);
}
if(command == PrintCmd)
{eventAction->SetPrintModulo(PrintCmd->GetNewIntValue(newValue));}
}