118 lines
4.5 KiB
C++
118 lines
4.5 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: HistoMessenger.cc,v 1.6 2006/06/29 17:03:16 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-08-01 $
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#include "HistoMessenger.hh"
|
|
|
|
#include <sstream>
|
|
|
|
#include "Histo.hh"
|
|
#include "G4UIdirectory.hh"
|
|
#include "G4UIcommand.hh"
|
|
#include "G4UIparameter.hh"
|
|
#include "G4UIcmdWithAString.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
HistoMessenger::HistoMessenger(Histo* manager)
|
|
:histo (manager)
|
|
{
|
|
histoDir = new G4UIdirectory("/testem/histo/");
|
|
histoDir->SetGuidance("histograms control");
|
|
|
|
factoryCmd = new G4UIcmdWithAString("/testem/histo/fileName",this);
|
|
factoryCmd->SetGuidance("set name for the histograms file");
|
|
|
|
fileCmd = new G4UIcmdWithAString("/testem/histo/fileType",this);
|
|
fileCmd->SetGuidance("set type (hbook, XML) for the histograms file");
|
|
|
|
histoCmd = new G4UIcommand("/testem/histo/setHisto",this);
|
|
histoCmd->SetGuidance("Set bining of the histo number ih :");
|
|
histoCmd->SetGuidance(" nbBins; valMin; valMax; unit (of vmin and vmax)");
|
|
//
|
|
G4UIparameter* ih = new G4UIparameter("ih",'i',false);
|
|
ih->SetGuidance("histo number : from 1 to MaxHisto");
|
|
histoCmd->SetParameter(ih);
|
|
//
|
|
G4UIparameter* nbBins = new G4UIparameter("nbBins",'i',false);
|
|
nbBins->SetGuidance("number of bins");
|
|
nbBins->SetParameterRange("nbBins>0");
|
|
histoCmd->SetParameter(nbBins);
|
|
//
|
|
G4UIparameter* valMin = new G4UIparameter("valMin",'d',false);
|
|
valMin->SetGuidance("valMin, expressed in unit");
|
|
histoCmd->SetParameter(valMin);
|
|
//
|
|
G4UIparameter* valMax = new G4UIparameter("valMax",'d',false);
|
|
valMax->SetGuidance("valMax, expressed in unit");
|
|
histoCmd->SetParameter(valMax);
|
|
//
|
|
G4UIparameter* unit = new G4UIparameter("unit",'s',true);
|
|
unit->SetGuidance("if omitted, vmin and vmax are assumed dimensionless");
|
|
unit->SetDefaultValue("none");
|
|
histoCmd->SetParameter(unit);
|
|
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
HistoMessenger::~HistoMessenger()
|
|
{
|
|
delete fileCmd;
|
|
delete histoCmd;
|
|
delete factoryCmd;
|
|
delete histoDir;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
void HistoMessenger::SetNewValue(G4UIcommand* command,G4String newValues)
|
|
{
|
|
if (command == factoryCmd)
|
|
histo->setFileName(newValues);
|
|
|
|
if (command == fileCmd)
|
|
histo->setFileType(newValues);
|
|
|
|
if (command == histoCmd)
|
|
{ G4int ih,nbBins; G4double vmin,vmax;
|
|
std::istringstream is(newValues);
|
|
G4String unts;
|
|
is >> ih >> nbBins >> vmin >> vmax >> unts;
|
|
G4String unit = unts;
|
|
G4double vUnit = 1. ;
|
|
if (unit != "none") vUnit = G4UIcommand::ValueOf(unit);
|
|
histo->setHisto1D(ih,nbBins,vmin,vmax,vUnit);
|
|
}
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|