Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file electromagnetic/TestEm9/src/HistoMes << 27 /// \brief Implementation of the HistoMessenge << 28 // 23 // >> 24 // $Id: HistoMessenger.cc,v 1.5 2005/11/17 08:21:58 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00-patch-01 $ 29 // 26 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 28 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 29 33 #include "HistoMessenger.hh" 30 #include "HistoMessenger.hh" 34 31 35 #include "Histo.hh" << 32 #include <sstream> 36 33 37 #include "G4UIcmdWithAString.hh" << 34 #include "Histo.hh" 38 #include "G4UIcommand.hh" << 39 #include "G4UIdirectory.hh" 35 #include "G4UIdirectory.hh" >> 36 #include "G4UIcommand.hh" 40 #include "G4UIparameter.hh" 37 #include "G4UIparameter.hh" 41 << 38 #include "G4UIcmdWithAString.hh" 42 #include <sstream> << 43 39 44 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 41 46 HistoMessenger::HistoMessenger(Histo* hist) << 42 HistoMessenger::HistoMessenger(Histo* manager) 47 : G4UImessenger(), fHisto(hist), fHistoDir(0 << 43 :histo (manager) 48 { 44 { 49 fHistoDir = new G4UIdirectory("/testem/histo << 45 histoDir = new G4UIdirectory("/testem/histo/"); 50 fHistoDir->SetGuidance("histograms control") << 46 histoDir->SetGuidance("histograms control"); 51 47 52 fFactoryCmd = new G4UIcmdWithAString("/teste << 48 factoryCmd = new G4UIcmdWithAString("/testem/histo/fileName",this); 53 fFactoryCmd->SetGuidance("set name for the h << 49 factoryCmd->SetGuidance("set name for the histograms file"); 54 50 55 fFileCmd = new G4UIcmdWithAString("/testem/h << 51 fileCmd = new G4UIcmdWithAString("/testem/histo/fileType",this); 56 fFileCmd->SetGuidance("set type (hbook, XML) << 52 fileCmd->SetGuidance("set type (hbook, XML) for the histograms file"); 57 53 58 fHistoCmd = new G4UIcommand("/testem/histo/s << 54 histoCmd = new G4UIcommand("/testem/histo/setHisto",this); 59 fHistoCmd->SetGuidance("Set bining of the hi << 55 histoCmd->SetGuidance("Set bining of the histo number ih :"); 60 fHistoCmd->SetGuidance(" nbBins; valMin; va << 56 histoCmd->SetGuidance(" nbBins; valMin; valMax; unit (of vmin and vmax)"); 61 // 57 // 62 G4UIparameter* ih = new G4UIparameter("ih", << 58 G4UIparameter* ih = new G4UIparameter("ih",'i',false); 63 ih->SetGuidance("histo number : from 0 to Ma << 59 ih->SetGuidance("histo number : from 1 to MaxHisto"); 64 fHistoCmd->SetParameter(ih); << 60 histoCmd->SetParameter(ih); 65 // 61 // 66 G4UIparameter* nbBins = new G4UIparameter("n << 62 G4UIparameter* nbBins = new G4UIparameter("nbBins",'i',false); 67 nbBins->SetGuidance("number of bins"); 63 nbBins->SetGuidance("number of bins"); 68 nbBins->SetParameterRange("nbBins>0"); 64 nbBins->SetParameterRange("nbBins>0"); 69 fHistoCmd->SetParameter(nbBins); << 65 histoCmd->SetParameter(nbBins); 70 // 66 // 71 G4UIparameter* valMin = new G4UIparameter("v << 67 G4UIparameter* valMin = new G4UIparameter("valMin",'d',false); 72 valMin->SetGuidance("valMin, expressed in un 68 valMin->SetGuidance("valMin, expressed in unit"); 73 fHistoCmd->SetParameter(valMin); << 69 histoCmd->SetParameter(valMin); 74 // 70 // 75 G4UIparameter* valMax = new G4UIparameter("v << 71 G4UIparameter* valMax = new G4UIparameter("valMax",'d',false); 76 valMax->SetGuidance("valMax, expressed in un 72 valMax->SetGuidance("valMax, expressed in unit"); 77 fHistoCmd->SetParameter(valMax); << 73 histoCmd->SetParameter(valMax); 78 // 74 // 79 G4UIparameter* unit = new G4UIparameter("uni << 75 G4UIparameter* unit = new G4UIparameter("unit",'s',true); 80 unit->SetGuidance("if omitted, vmin and vmax 76 unit->SetGuidance("if omitted, vmin and vmax are assumed dimensionless"); 81 unit->SetDefaultValue("none"); 77 unit->SetDefaultValue("none"); 82 fHistoCmd->SetParameter(unit); << 78 histoCmd->SetParameter(unit); >> 79 83 } 80 } 84 81 85 //....oooOO0OOooo........oooOO0OOooo........oo 82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 86 83 87 HistoMessenger::~HistoMessenger() 84 HistoMessenger::~HistoMessenger() 88 { 85 { 89 delete fFileCmd; << 86 delete fileCmd; 90 delete fHistoCmd; << 87 delete histoCmd; 91 delete fFactoryCmd; << 88 delete factoryCmd; 92 delete fHistoDir; << 89 delete histoDir; 93 } 90 } 94 91 95 //....oooOO0OOooo........oooOO0OOooo........oo 92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 96 93 97 void HistoMessenger::SetNewValue(G4UIcommand* << 94 void HistoMessenger::SetNewValue(G4UIcommand* command,G4String newValues) 98 { 95 { 99 if (command == fFactoryCmd) { << 96 if (command == factoryCmd) 100 fHisto->SetFileName(newValues); << 97 histo->setFileName(newValues); 101 } << 98 102 << 99 if (command == fileCmd) 103 if (command == fFileCmd) { << 100 histo->setFileType(newValues); 104 fHisto->SetFileType(newValues); << 101 105 } << 102 if (command == histoCmd) 106 << 103 { G4int ih,nbBins; G4double vmin,vmax; 107 if (command == fHistoCmd) { << 104 std::istringstream is(newValues); 108 G4int ih, nbBins; << 105 G4String unts; 109 G4double vmin, vmax; << 106 is >> ih >> nbBins >> vmin >> vmax >> unts; 110 std::istringstream is(newValues); << 107 G4String unit = unts; 111 G4String unts; << 108 G4double vUnit = 1. ; 112 is >> ih >> nbBins >> vmin >> vmax >> unts << 109 if (unit != "none") vUnit = G4UIcommand::ValueOf(unit); 113 G4String unit = unts; << 110 histo->setHisto1D(ih,nbBins,vmin,vmax,vUnit); 114 G4double vUnit = 1.; << 111 } 115 if (unit != "none") { << 116 vUnit = G4UIcommand::ValueOf(unit); << 117 } << 118 if (vUnit <= 0.0) { << 119 vUnit = 1.; << 120 } << 121 fHisto->SetHisto1D(ih, nbBins, vmin, vmax, << 122 } << 123 } 112 } 124 113 125 //....oooOO0OOooo........oooOO0OOooo........oo 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 126 115