source: trunk/examples/extended/medical/fanoCavity2/src/HistoMessenger.cc @ 1277

Last change on this file since 1277 was 1230, checked in by garnier, 15 years ago

update to geant4.9.3

File size: 5.4 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26// $Id: HistoMessenger.cc,v 1.2 2007/11/12 18:19:30 maire Exp $
27// GEANT4 tag $Name: geant4-09-03-cand-01 $
28//
29//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31
32#include "HistoMessenger.hh"
33
34#include <sstream>
35
36#include "HistoManager.hh"
37#include "G4UIdirectory.hh"
38#include "G4UIcommand.hh"
39#include "G4UIparameter.hh"
40#include "G4UIcmdWithAString.hh"
41#include "G4UIcmdWithAnInteger.hh"
42
43//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44
45HistoMessenger::HistoMessenger(HistoManager* manager)
46:histoManager (manager)
47{
48  histoDir = new G4UIdirectory("/testem/histo/");
49  histoDir->SetGuidance("histograms control");
50
51  factoryCmd = new G4UIcmdWithAString("/testem/histo/setFileName",this);
52  factoryCmd->SetGuidance("set name for the histograms file");
53
54  typeCmd = new G4UIcmdWithAString("/testem/histo/setFileType",this);
55  typeCmd->SetGuidance("set histograms file type: hbook, root, XML");
56  typeCmd->SetCandidates("hbook root XML");
57
58  histoCmd = new G4UIcommand("/testem/histo/setHisto",this);
59  histoCmd->SetGuidance("Set bining of the histo number ih :");
60  histoCmd->SetGuidance("  nbBins; valMin; valMax; unit (of vmin and vmax)");
61  //
62  G4UIparameter* ih = new G4UIparameter("ih",'i',false);
63  ih->SetGuidance("histo number : from 1 to MaxHisto");
64  ih->SetParameterRange("ih>0");
65  histoCmd->SetParameter(ih);
66  //
67  G4UIparameter* nbBins = new G4UIparameter("nbBins",'i',false);
68  nbBins->SetGuidance("number of bins");
69  nbBins->SetParameterRange("nbBins>0");
70  histoCmd->SetParameter(nbBins);
71  //
72  G4UIparameter* valMin = new G4UIparameter("valMin",'d',false);
73  valMin->SetGuidance("valMin, expressed in unit");
74  histoCmd->SetParameter(valMin); 
75  //   
76  G4UIparameter* valMax = new G4UIparameter("valMax",'d',false);
77  valMax->SetGuidance("valMax, expressed in unit");
78  histoCmd->SetParameter(valMax);
79  //   
80  G4UIparameter* unit = new G4UIparameter("unit",'s',true);
81  unit->SetGuidance("if omitted, vmin and vmax are assumed dimensionless");
82  unit->SetDefaultValue("none");
83  histoCmd->SetParameter(unit);
84 
85  prhistoCmd = new G4UIcmdWithAnInteger("/testem/histo/printHisto",this);
86  prhistoCmd->SetGuidance("print histo #id on ascii file");
87  prhistoCmd->SetParameterName("id",false);
88  prhistoCmd->SetRange("id>0");
89     
90  rmhistoCmd = new G4UIcmdWithAnInteger("/testem/histo/removeHisto",this);
91  rmhistoCmd->SetGuidance("desactivate histo  #id");
92  rmhistoCmd->SetParameterName("id",false);
93  rmhistoCmd->SetRange("id>0");
94}
95
96//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
97
98HistoMessenger::~HistoMessenger()
99{
100  delete rmhistoCmd;
101  delete prhistoCmd;   
102  delete histoCmd;
103  delete typeCmd; 
104  delete factoryCmd;
105  delete histoDir;
106}
107
108//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109
110void HistoMessenger::SetNewValue(G4UIcommand* command, G4String newValues)
111{
112  if (command == factoryCmd)
113    histoManager->SetFileName(newValues);
114
115  if (command == typeCmd)
116    histoManager->SetFileType(newValues);
117
118  if (command == histoCmd)
119   { G4int ih,nbBins; G4double vmin,vmax; char unts[30];
120     const char* t = newValues;
121     std::istringstream is(t);
122     is >> ih >> nbBins >> vmin >> vmax >> unts;
123     G4String unit = unts;
124     G4double vUnit = 1. ;
125     if (unit != "none") vUnit = G4UIcommand::ValueOf(unit);
126     histoManager->SetHisto (ih,nbBins,vmin*vUnit,vmax*vUnit,unit);
127   }
128   
129  if (command == prhistoCmd)
130    histoManager->PrintHisto(prhistoCmd->GetNewIntValue(newValues));
131           
132  if (command == rmhistoCmd)
133    histoManager->RemoveHisto(rmhistoCmd->GetNewIntValue(newValues));         
134}
135
136//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
137
Note: See TracBrowser for help on using the repository browser.