File indexing completed on 2025-04-04 08:05:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034 #include "HistoMessenger.hh"
0035
0036 #include "Histo.hh"
0037
0038 #include "G4UIcmdWithAString.hh"
0039 #include "G4UIcommand.hh"
0040 #include "G4UIdirectory.hh"
0041 #include "G4UIparameter.hh"
0042
0043 #include <sstream>
0044
0045
0046
0047 HistoMessenger::HistoMessenger(Histo* hist) : G4UImessenger(), fHisto(hist)
0048 {
0049 fHistoDir = new G4UIdirectory("/testhadr/histo/");
0050 fHistoDir->SetGuidance("histograms control");
0051
0052 fFactoryCmd = new G4UIcmdWithAString("/testhadr/HistoName", this);
0053 fFactoryCmd->SetGuidance("set name for the histograms file");
0054
0055 fHistoCmd = new G4UIcommand("/testhadr/histo/setHisto", this);
0056 fHistoCmd->SetGuidance("Set bining of the histo number ih :");
0057 fHistoCmd->SetGuidance(" nbBins; valMin; valMax; unit (of vmin and vmax)");
0058
0059 G4UIparameter* ih = new G4UIparameter("ih", 'i', false);
0060 ih->SetGuidance("histo number : from 0 to MaxHisto-1");
0061 fHistoCmd->SetParameter(ih);
0062
0063 G4UIparameter* nbBins = new G4UIparameter("nbBins", 'i', false);
0064 nbBins->SetGuidance("number of bins");
0065 nbBins->SetParameterRange("nbBins>0");
0066 fHistoCmd->SetParameter(nbBins);
0067
0068 G4UIparameter* valMin = new G4UIparameter("valMin", 'd', false);
0069 valMin->SetGuidance("valMin, expressed in unit");
0070 fHistoCmd->SetParameter(valMin);
0071
0072 G4UIparameter* valMax = new G4UIparameter("valMax", 'd', false);
0073 valMax->SetGuidance("valMax, expressed in unit");
0074 fHistoCmd->SetParameter(valMax);
0075
0076 G4UIparameter* unit = new G4UIparameter("unit", 's', true);
0077 unit->SetGuidance("if omitted, vmin and vmax are assumed dimensionless");
0078 unit->SetDefaultValue("none");
0079 fHistoCmd->SetParameter(unit);
0080 }
0081
0082
0083
0084 HistoMessenger::~HistoMessenger()
0085 {
0086 delete fHistoCmd;
0087 delete fFactoryCmd;
0088 delete fHistoDir;
0089 }
0090
0091
0092
0093 void HistoMessenger::SetNewValue(G4UIcommand* command, G4String newValues)
0094 {
0095 if (command == fFactoryCmd) {
0096 fHisto->SetFileName(newValues);
0097 }
0098
0099 if (command == fHistoCmd) {
0100 G4int ih, nbBins;
0101 G4double vmin, vmax;
0102 std::istringstream is(newValues);
0103 G4String unts;
0104 is >> ih >> nbBins >> vmin >> vmax >> unts;
0105 G4String unit = unts;
0106 G4double vUnit = 1.;
0107 if (unit != "none") {
0108 vUnit = G4UIcommand::ValueOf(unit);
0109 }
0110 if (vUnit <= 0.0) {
0111 vUnit = 1.;
0112 }
0113 fHisto->SetHisto1D(ih, nbBins, vmin, vmax, vUnit);
0114 }
0115 }
0116
0117