// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // $Id: G4LevelReader.hh 88382 2015-02-17 10:49:24Z vnivanch $ // // ------------------------------------------------------------------- // // GEANT4 header file // // File name: G4LevelReader // // Author: V.Ivanchenko // // Creation date: 4 January 2012 // // Modifications: // // ------------------------------------------------------------------- // // Helper class to read Geant4 nuclear level data // #ifndef G4LEVELREADER_HH #define G4LEVELREADER_HH 1 #include "globals.hh" #include "G4LevelManager.hh" #include class G4NuclearLevelData; class G4DeexPrecoParameters; class G4LevelReader { public: explicit G4LevelReader(G4NuclearLevelData*); // create run manager using G4LEVELGAMMADATA data for Z and A const G4LevelManager* CreateLevelManager(G4int Z, G4int A); // create run manager using whatever data const G4LevelManager* MakeLevelManager(G4int Z, G4int A, const G4String& filename); inline void SetVerbose(G4int val); private: G4bool ReadData(std::istringstream& dataFile, G4double& x); G4bool ReadDataItem(std::istream& dataFile, G4double& x); G4bool ReadDataItem(std::istream& dataFile, G4float& x); G4bool ReadDataItem(std::istream& dataFile, G4int& x); G4bool ReadDataItem(std::istream& dataFile, G4String& x); const std::vector* NormalizedICCProbability(G4int Z); const G4LevelManager* LevelManager(G4int Z, G4int A, G4int nlev, std::ifstream& infile); G4LevelReader(const G4LevelReader & right) = delete; const G4LevelReader& operator=(const G4LevelReader &right) = delete; G4bool operator==(const G4LevelReader &right) const = delete; G4bool operator!=(const G4LevelReader &right) const = delete; G4NuclearLevelData* fData; G4DeexPrecoParameters* fParam; G4double fEnergy; G4double fCurrEnergy; G4double fTrEnergy; G4double fTimeFactor; G4double fTime; G4float fProb; G4float fSpin; G4float fAlpha; G4float fAlphaMax; G4float fRatio; G4float fICC[10]; static const G4int nfloting = 13; static G4String fFloatingLevels[nfloting]; G4String fDirectory; G4String fFile; G4String fPol; static const G4int nbufmax = 20; static const G4int nbuf1 = 14; static const G4int nbuf2 = 8; char buffer[nbufmax]; char buff1[nbuf1]; char buff2[nbuf2]; char bufp[3]; G4int fVerbose; G4int fLevelMax; G4int fTransMax; G4float fNorm1; std::vector vEnergy; std::vector vSpin; std::vector vLevel; std::vector vTrans; std::vector vRatio; std::vector vGammaCumProbability; std::vector vGammaProbability; std::vector*> vShellProbability; }; inline void G4LevelReader::SetVerbose(G4int val) { fVerbose = val; } #endif