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/inclu << 23 // ==================================================================== 27 /// \brief Definition of the HepMCG4AsciiReade << 28 // 24 // >> 25 // HepMCG4AsciiReader.hh >> 26 // $Id: HepMCG4AsciiReader.hh,v 1.3 2003/12/09 15:31:14 gunter Exp $ 29 // 27 // 30 << 28 // ==================================================================== 31 #ifndef HEPMC_G4_ASCII_READER_H 29 #ifndef HEPMC_G4_ASCII_READER_H 32 #define HEPMC_G4_ASCII_READER_H 30 #define HEPMC_G4_ASCII_READER_H 33 31 34 #include "HepMC/IO_GenEvent.h" << 35 #include "HepMCG4Interface.hh" 32 #include "HepMCG4Interface.hh" >> 33 #include "HepMC/IO_Ascii.h" 36 34 37 class HepMCG4AsciiReaderMessenger; 35 class HepMCG4AsciiReaderMessenger; 38 36 39 class HepMCG4AsciiReader : public HepMCG4Inter << 37 class HepMCG4AsciiReader : public HepMCG4Interface { 40 { << 38 protected: 41 protected: << 39 G4String filename; 42 G4String filename; << 40 HepMC::IO_Ascii* asciiInput; 43 HepMC::IO_GenEvent* asciiInput; << 44 41 45 G4int verbose; << 42 G4int verbose; 46 HepMCG4AsciiReaderMessenger* messenger; << 43 HepMCG4AsciiReaderMessenger* messenger; 47 44 48 virtual HepMC::GenEvent* GenerateHepMCEven << 45 virtual HepMC::GenEvent* GenerateHepMCEvent(); 49 46 50 public: << 47 public: 51 HepMCG4AsciiReader(); << 48 HepMCG4AsciiReader(); 52 ~HepMCG4AsciiReader(); << 49 ~HepMCG4AsciiReader(); 53 50 54 // set/get methods << 51 // set/get methods 55 void SetFileName(G4String name); << 52 void SetFileName(G4String name); 56 G4String GetFileName() const; << 53 G4String GetFileName() const; 57 54 58 void SetVerboseLevel(G4int i); << 55 void SetVerboseLevel(G4int i); 59 G4int GetVerboseLevel() const; << 56 G4int GetVerboseLevel() const; 60 57 61 // methods... << 58 // methods... 62 void Initialize(); << 59 void Initialize(); 63 }; 60 }; 64 61 65 // =========================================== 62 // ==================================================================== 66 // inline functions 63 // inline functions 67 // =========================================== 64 // ==================================================================== 68 65 69 inline void HepMCG4AsciiReader::SetFileName(G4 66 inline void HepMCG4AsciiReader::SetFileName(G4String name) 70 { 67 { 71 filename = name; << 68 filename= name; 72 } 69 } 73 70 74 inline G4String HepMCG4AsciiReader::GetFileNam 71 inline G4String HepMCG4AsciiReader::GetFileName() const 75 { 72 { 76 return filename; 73 return filename; 77 } 74 } 78 75 79 inline void HepMCG4AsciiReader::SetVerboseLeve 76 inline void HepMCG4AsciiReader::SetVerboseLevel(G4int i) 80 { 77 { 81 verbose = i; << 78 verbose= i; 82 } 79 } 83 80 84 inline G4int HepMCG4AsciiReader::GetVerboseLev 81 inline G4int HepMCG4AsciiReader::GetVerboseLevel() const 85 { 82 { 86 return verbose; 83 return verbose; 87 } 84 } 88 85 89 #endif 86 #endif 90 87