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 eventgenerator/HepMC/HepMCEx01/src/H << 23 // ==================================================================== 27 /// \brief Implementation of the HepMCG4AsciiR << 28 // 24 // >> 25 // HepMCG4AsciiReaderMessenger.cc >> 26 // $Id: HepMCG4AsciiReaderMessenger.cc,v 1.3 2003/12/09 15:31:31 gunter Exp $ 29 // 27 // >> 28 // ==================================================================== 30 #include "HepMCG4AsciiReaderMessenger.hh" 29 #include "HepMCG4AsciiReaderMessenger.hh" 31 << 32 #include "HepMCG4AsciiReader.hh" 30 #include "HepMCG4AsciiReader.hh" 33 31 >> 32 #include "G4UIdirectory.hh" >> 33 #include "G4UIcmdWithoutParameter.hh" 34 #include "G4UIcmdWithAString.hh" 34 #include "G4UIcmdWithAString.hh" 35 #include "G4UIcmdWithAnInteger.hh" 35 #include "G4UIcmdWithAnInteger.hh" 36 #include "G4UIcmdWithoutParameter.hh" << 37 #include "G4UIdirectory.hh" << 38 36 39 //....oooOO0OOooo........oooOO0OOooo........oo << 37 //////////////////////////////////////////////////////// 40 HepMCG4AsciiReaderMessenger::HepMCG4AsciiReade << 38 HepMCG4AsciiReaderMessenger::HepMCG4AsciiReaderMessenger >> 39 (HepMCG4AsciiReader* agen) >> 40 : gen(agen) >> 41 //////////////////////////////////////////////////////// 41 { 42 { 42 dir = new G4UIdirectory("/generator/hepmcAsc << 43 dir= new G4UIdirectory("/generator/hepmcAscii/"); 43 dir->SetGuidance("Reading HepMC event from a << 44 dir-> SetGuidance("Reading HepMC event from an Ascii file"); 44 45 45 verbose = new G4UIcmdWithAnInteger("/generat << 46 verbose= 46 verbose->SetGuidance("Set verbose level"); << 47 new G4UIcmdWithAnInteger("/generator/hepmcAscii/verbose", this); 47 verbose->SetParameterName("verboseLevel", fa << 48 verbose-> SetGuidance("Set verbose level"); 48 verbose->SetRange("verboseLevel>=0 && verbos << 49 verbose-> SetParameterName("verboseLevel", false, false); 49 << 50 verbose-> SetRange("verboseLevel>=0 && verboseLevel<=1"); 50 open = new G4UIcmdWithAString("/generator/he << 51 51 open->SetGuidance("(re)open data file (HepMC << 52 open= new G4UIcmdWithAString("/generator/hepmcAscii/open", this); 52 open->SetParameterName("input ascii file", t << 53 open-> SetGuidance("(re)open data file (HepMC Ascii format)"); >> 54 open-> SetParameterName("input ascii file", true, true); 53 } 55 } 54 56 55 //....oooOO0OOooo........oooOO0OOooo........oo << 57 /////////////////////////////////////////////////////////// 56 HepMCG4AsciiReaderMessenger::~HepMCG4AsciiRead 58 HepMCG4AsciiReaderMessenger::~HepMCG4AsciiReaderMessenger() >> 59 /////////////////////////////////////////////////////////// 57 { 60 { 58 delete verbose; 61 delete verbose; 59 delete open; 62 delete open; 60 63 61 delete dir; 64 delete dir; 62 } 65 } 63 66 64 //....oooOO0OOooo........oooOO0OOooo........oo << 67 /////////////////////////////////////////////////////////////////// 65 void HepMCG4AsciiReaderMessenger::SetNewValue( << 68 void HepMCG4AsciiReaderMessenger::SetNewValue(G4UIcommand* command, >> 69 G4String newValues) >> 70 /////////////////////////////////////////////////////////////////// 66 { 71 { 67 if (command == verbose) { << 72 if (command==verbose) { 68 int level = verbose->GetNewIntValue(newVal << 73 int level= verbose-> GetNewIntValue(newValues); 69 gen->SetVerboseLevel(level); << 74 gen-> SetVerboseLevel(level); 70 } << 75 } else if (command==open) { 71 else if (command == open) { << 76 gen-> SetFileName(newValues); 72 gen->SetFileName(newValues); << 77 G4cout << "HepMC Ascii inputfile: " 73 G4cout << "HepMC Ascii inputfile: " << gen << 78 << gen-> GetFileName() << G4endl; 74 gen->Initialize(); << 79 gen-> Initialize(); 75 } 80 } 76 } 81 } 77 82 78 //....oooOO0OOooo........oooOO0OOooo........oo << 83 >> 84 /////////////////////////////////////////////////////////////////////////// 79 G4String HepMCG4AsciiReaderMessenger::GetCurre 85 G4String HepMCG4AsciiReaderMessenger::GetCurrentValue(G4UIcommand* command) >> 86 /////////////////////////////////////////////////////////////////////////// 80 { 87 { 81 G4String cv; 88 G4String cv; 82 89 83 if (command == verbose) { 90 if (command == verbose) { 84 cv = verbose->ConvertToString(gen->GetVerb << 91 cv= verbose-> ConvertToString(gen-> GetVerboseLevel()); 85 } << 92 } else if (command == open) { 86 else if (command == open) { << 93 cv= gen-> GetFileName(); 87 cv = gen->GetFileName(); << 88 } 94 } 89 return cv; 95 return cv; 90 } 96 } >> 97 91 98