File indexing completed on 2025-04-04 08:05:13
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 #include "HistoMessenger.hh"
0034
0035 #include "Histo.hh"
0036
0037 #include "G4PhysicalConstants.hh"
0038 #include "G4SystemOfUnits.hh"
0039 #include "G4UIcmdWithAString.hh"
0040 #include "G4UIcommand.hh"
0041 #include "G4UIdirectory.hh"
0042 #include "G4UIparameter.hh"
0043
0044 #include <sstream>
0045
0046
0047
0048 HistoMessenger::HistoMessenger(Histo* hist)
0049 : G4UImessenger(), fHisto(hist), fHistoDir(0), fFactoryCmd(0), fFileCmd(0), fHistoCmd(0)
0050 {
0051 fHistoDir = new G4UIdirectory("/testhadr/histo/");
0052 fHistoDir->SetGuidance("histograms control");
0053
0054 fFactoryCmd = new G4UIcmdWithAString("/testhadr/histo/fileName", this);
0055 fFactoryCmd->SetGuidance("set name for the histograms file");
0056
0057 fFileCmd = new G4UIcmdWithAString("/testhadr/histo/fileType", this);
0058 fFileCmd->SetGuidance("set type (root, XML) for the histograms file");
0059
0060 fHistoCmd = new G4UIcommand("/testhadr/histo/setHisto", this);
0061 fHistoCmd->SetGuidance("Set bining of the histo number ih :");
0062 fHistoCmd->SetGuidance(" nbBins; valMin; valMax; unit (of vmin and vmax)");
0063
0064 G4UIparameter* ih = new G4UIparameter("ih", 'i', false);
0065 ih->SetGuidance("histo number : from 0 to MaxHisto-1");
0066 fHistoCmd->SetParameter(ih);
0067
0068 G4UIparameter* nbBins = new G4UIparameter("nbBins", 'i', false);
0069 nbBins->SetGuidance("number of bins");
0070 nbBins->SetParameterRange("nbBins>0");
0071 fHistoCmd->SetParameter(nbBins);
0072
0073 G4UIparameter* valMin = new G4UIparameter("valMin", 'd', false);
0074 valMin->SetGuidance("valMin, expressed in unit");
0075 fHistoCmd->SetParameter(valMin);
0076
0077 G4UIparameter* valMax = new G4UIparameter("valMax", 'd', false);
0078 valMax->SetGuidance("valMax, expressed in unit");
0079 fHistoCmd->SetParameter(valMax);
0080
0081 G4UIparameter* unit = new G4UIparameter("unit", 's', true);
0082 unit->SetGuidance("if omitted, vmin and vmax are assumed dimensionless");
0083 unit->SetDefaultValue("none");
0084 fHistoCmd->SetParameter(unit);
0085 }
0086
0087
0088
0089 HistoMessenger::~HistoMessenger()
0090 {
0091 delete fFileCmd;
0092 delete fHistoCmd;
0093 delete fFactoryCmd;
0094 delete fHistoDir;
0095 }
0096
0097
0098
0099 void HistoMessenger::SetNewValue(G4UIcommand* command, G4String newValues)
0100 {
0101 if (command == fFactoryCmd) {
0102 fHisto->SetFileName(newValues);
0103 }
0104
0105 if (command == fFileCmd) {
0106 fHisto->SetFileType(newValues);
0107 }
0108
0109 if (command == fHistoCmd) {
0110 G4int ih, nbBins;
0111 G4double vmin, vmax;
0112 std::istringstream is(newValues);
0113 G4String unts;
0114 is >> ih >> nbBins >> vmin >> vmax >> unts;
0115 G4String unit = unts;
0116 G4double vUnit = 1.;
0117 if (unit != "none") {
0118 vUnit = G4UIcommand::ValueOf(unit);
0119 }
0120 if (vUnit <= 0.0) {
0121 vUnit = 1.;
0122 }
0123 fHisto->SetHisto1D(ih, nbBins, vmin, vmax, vUnit);
0124 }
0125 }
0126
0127