Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 27 // Author: Ivana Hrivnacova, 05/09/2014 (ivana 28 29 #include "G4CsvAnalysisReader.hh" 30 #include "G4CsvRFileManager.hh" 31 #include "G4CsvRNtupleManager.hh" 32 #include "G4ThreadLocalSingleton.hh" 33 #include "G4Threading.hh" 34 35 using namespace G4Analysis; 36 37 //____________________________________________ 38 G4CsvAnalysisReader* G4CsvAnalysisReader::Inst 39 { 40 static G4ThreadLocalSingleton<G4CsvAnalysisR 41 return instance.Instance(); 42 } 43 44 //____________________________________________ 45 G4CsvAnalysisReader::G4CsvAnalysisReader() 46 : G4ToolsAnalysisReader("Csv") 47 { 48 if ( ! G4Threading::IsWorkerThread() ) fgMas 49 50 // Create managers 51 fNtupleManager = std::make_shared<G4CsvRNtup 52 fFileManager = std::make_shared<G4CsvRFileMa 53 fNtupleManager->SetFileManager(fFileManager) 54 55 // Set managers to base class 56 SetNtupleManager(fNtupleManager); 57 SetFileManager(fFileManager); 58 } 59 60 //____________________________________________ 61 G4CsvAnalysisReader::~G4CsvAnalysisReader() 62 { 63 if ( fState.GetIsMaster() ) fgMasterInstance 64 } 65 66 // 67 // private methods 68 // 69 70 //____________________________________________ 71 G4bool G4CsvAnalysisReader::Reset() 72 { 73 // Reset histograms and ntuple 74 75 auto result = true; 76 77 result &= G4ToolsAnalysisReader::Reset(); 78 result &= fNtupleManager->Reset(); 79 80 return result; 81 } 82 83 // 84 // protected methods 85 // 86 87 //____________________________________________ 88 G4bool G4CsvAnalysisReader::CloseFilesImpl(G4 89 { 90 Message(kVL4, "close", "files"); 91 92 auto result = true; 93 94 if (reset) { 95 result &= Reset(); 96 } 97 98 fFileManager->CloseFiles(); 99 100 Message(kVL2, "close", "files", "", result); 101 102 return result; 103 } 104