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 37 //____________________________________________ 35 //_____________________________________________________________________________ 38 template <typename T> 36 template <typename T> 39 G4TScoreNtupleWriterMessenger<T>::G4TScoreNtup 37 G4TScoreNtupleWriterMessenger<T>::G4TScoreNtupleWriterMessenger( 40 G4TScoreNtupleWriter<T>* scoreNtupleWriter) 38 G4TScoreNtupleWriter<T>* scoreNtupleWriter) 41 : G4UImessenger() 39 : G4UImessenger() 42 , fScoreNtupleWriter(scoreNtupleWriter) 40 , fScoreNtupleWriter(scoreNtupleWriter) 43 , fWriterFileNameCmd(nullptr) 41 , fWriterFileNameCmd(nullptr) 44 , fWriterVerboseCmd(nullptr) 42 , fWriterVerboseCmd(nullptr) 45 { 43 { 46 fDirectory = new G4UIdirectory("/score/ntupl 44 fDirectory = new G4UIdirectory("/score/ntuple/"); 47 fDirectory->SetGuidance("Interactive score n 45 fDirectory->SetGuidance("Interactive score ntuple writer commands."); 48 46 49 fWriterFileNameCmd = 47 fWriterFileNameCmd = 50 new G4UIcmdWithAString("/score/ntuple/writ 48 new G4UIcmdWithAString("/score/ntuple/writerFileName", this); 51 fWriterFileNameCmd->SetGuidance("Set the ntu 49 fWriterFileNameCmd->SetGuidance("Set the ntuple writer output file name."); 52 fWriterFileNameCmd->SetParameterName("output 50 fWriterFileNameCmd->SetParameterName("outputFileName", false); 53 fWriterFileNameCmd->AvailableForStates(G4Sta 51 fWriterFileNameCmd->AvailableForStates(G4State_PreInit, G4State_Idle); 54 52 55 fWriterVerboseCmd = 53 fWriterVerboseCmd = 56 new G4UIcmdWithAnInteger("/score/ntuple/wr 54 new G4UIcmdWithAnInteger("/score/ntuple/writerVerbose", this); 57 fWriterVerboseCmd->SetGuidance("Set the ntu 55 fWriterVerboseCmd->SetGuidance("Set the ntuple writer verbose level."); 58 fWriterVerboseCmd->SetParameterName("writerV 56 fWriterVerboseCmd->SetParameterName("writerVerbose", false); 59 fWriterVerboseCmd->AvailableForStates(G4Stat 57 fWriterVerboseCmd->AvailableForStates(G4State_PreInit, G4State_Idle); 60 } 58 } 61 59 62 //____________________________________________ 60 //_____________________________________________________________________________ 63 template <typename T> 61 template <typename T> 64 G4TScoreNtupleWriterMessenger<T>::~G4TScoreNtu 62 G4TScoreNtupleWriterMessenger<T>::~G4TScoreNtupleWriterMessenger() 65 { 63 { 66 delete fWriterFileNameCmd; 64 delete fWriterFileNameCmd; 67 delete fWriterVerboseCmd; 65 delete fWriterVerboseCmd; 68 delete fDirectory; 66 delete fDirectory; 69 } 67 } 70 68 71 //____________________________________________ 69 //_____________________________________________________________________________ 72 template <typename T> 70 template <typename T> 73 void G4TScoreNtupleWriterMessenger<T>::SetNewV 71 void G4TScoreNtupleWriterMessenger<T>::SetNewValue(G4UIcommand* command, 74 72 G4String newVal) 75 { 73 { 76 if(command == fWriterFileNameCmd) 74 if(command == fWriterFileNameCmd) 77 { 75 { 78 fScoreNtupleWriter->SetFileName(newVal); 76 fScoreNtupleWriter->SetFileName(newVal); 79 } 77 } 80 else if(command == fWriterVerboseCmd) 78 else if(command == fWriterVerboseCmd) 81 { 79 { 82 fScoreNtupleWriter->SetVerboseLevel( 80 fScoreNtupleWriter->SetVerboseLevel( 83 fWriterVerboseCmd->GetNewIntValue(newVal 81 fWriterVerboseCmd->GetNewIntValue(newVal)); 84 } 82 } 85 } 83 } 86 84