Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4TScoreNtupleWriterMessenger inline method << 27 // 26 // 28 // Author: Ivana Hrivnacova, 30/10/2018 << 27 // Author: Ivana Hrivnacova, 30/10/2018 (ivana@ipno.in2p3.fr) 29 // ------------------------------------------- << 30 28 31 #include "G4TScoreNtupleWriterMessenger.hh" 29 #include "G4TScoreNtupleWriterMessenger.hh" 32 #include "G4TScoreNtupleWriter.hh" 30 #include "G4TScoreNtupleWriter.hh" 33 #include "G4UImanager.hh" 31 #include "G4UImanager.hh" 34 #include "G4UIcmdWithAString.hh" 32 #include "G4UIcmdWithAString.hh" 35 #include "G4UIcmdWithAnInteger.hh" 33 #include "G4UIcmdWithAnInteger.hh" 36 34 >> 35 37 //____________________________________________ 36 //_____________________________________________________________________________ 38 template <typename T> 37 template <typename T> 39 G4TScoreNtupleWriterMessenger<T>::G4TScoreNtup 38 G4TScoreNtupleWriterMessenger<T>::G4TScoreNtupleWriterMessenger( 40 G4TScoreNtupleWriter<T>* scoreNtupleWriter) 39 G4TScoreNtupleWriter<T>* scoreNtupleWriter) 41 : G4UImessenger() << 40 : G4UImessenger(), 42 , fScoreNtupleWriter(scoreNtupleWriter) << 41 fScoreNtupleWriter(scoreNtupleWriter), 43 , fWriterFileNameCmd(nullptr) << 42 fWriterFileNameCmd(nullptr), 44 , fWriterVerboseCmd(nullptr) << 43 fWriterVerboseCmd(nullptr) 45 { 44 { 46 fDirectory = new G4UIdirectory("/score/ntupl 45 fDirectory = new G4UIdirectory("/score/ntuple/"); 47 fDirectory->SetGuidance("Interactive score n 46 fDirectory->SetGuidance("Interactive score ntuple writer commands."); 48 47 49 fWriterFileNameCmd = << 48 fWriterFileNameCmd = new G4UIcmdWithAString("/score/ntuple/writerFileName",this); 50 new G4UIcmdWithAString("/score/ntuple/writ << 49 fWriterFileNameCmd->SetGuidance( "Set the ntuple writer output file name."); 51 fWriterFileNameCmd->SetGuidance("Set the ntu << 50 fWriterFileNameCmd->SetParameterName("outputFileName",false); 52 fWriterFileNameCmd->SetParameterName("output << 53 fWriterFileNameCmd->AvailableForStates(G4Sta 51 fWriterFileNameCmd->AvailableForStates(G4State_PreInit, G4State_Idle); 54 52 55 fWriterVerboseCmd = << 53 fWriterVerboseCmd = new G4UIcmdWithAnInteger("/score/ntuple/writerVerbose",this); 56 new G4UIcmdWithAnInteger("/score/ntuple/wr << 57 fWriterVerboseCmd->SetGuidance("Set the ntu 54 fWriterVerboseCmd->SetGuidance("Set the ntuple writer verbose level."); 58 fWriterVerboseCmd->SetParameterName("writerV << 55 fWriterVerboseCmd->SetParameterName("writerVerbose",false); 59 fWriterVerboseCmd->AvailableForStates(G4Stat 56 fWriterVerboseCmd->AvailableForStates(G4State_PreInit, G4State_Idle); 60 } 57 } 61 58 62 //____________________________________________ 59 //_____________________________________________________________________________ 63 template <typename T> 60 template <typename T> 64 G4TScoreNtupleWriterMessenger<T>::~G4TScoreNtu 61 G4TScoreNtupleWriterMessenger<T>::~G4TScoreNtupleWriterMessenger() 65 { 62 { 66 delete fWriterFileNameCmd; 63 delete fWriterFileNameCmd; 67 delete fWriterVerboseCmd; 64 delete fWriterVerboseCmd; 68 delete fDirectory; 65 delete fDirectory; 69 } 66 } 70 67 71 //____________________________________________ 68 //_____________________________________________________________________________ 72 template <typename T> 69 template <typename T> 73 void G4TScoreNtupleWriterMessenger<T>::SetNewV << 70 void G4TScoreNtupleWriterMessenger<T>::SetNewValue(G4UIcommand * command,G4String newVal) 74 << 75 { 71 { 76 if(command == fWriterFileNameCmd) << 72 if ( command==fWriterFileNameCmd ) { 77 { << 78 fScoreNtupleWriter->SetFileName(newVal); 73 fScoreNtupleWriter->SetFileName(newVal); 79 } 74 } 80 else if(command == fWriterVerboseCmd) << 75 else if ( command==fWriterVerboseCmd ) { 81 { << 76 fScoreNtupleWriter->SetVerboseLevel(fWriterVerboseCmd->GetNewIntValue(newVal)); 82 fScoreNtupleWriter->SetVerboseLevel( << 83 fWriterVerboseCmd->GetNewIntValue(newVal << 84 } 77 } 85 } 78 } 86 79