Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 09:22:02

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 /// \file InformationKeeper.cc
0028 /// \brief Implementation of the InformationKeeper class
0029 
0030 #include "InformationKeeper.hh"
0031 
0032 #ifdef USE_MPI
0033 #include "G4MPImanager.hh"
0034 #endif
0035 
0036 #include <fstream>
0037 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0038 
0039 InformationKeeper* InformationKeeper::fInstance = nullptr;
0040 
0041 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0042 
0043 InformationKeeper* InformationKeeper::Instance()
0044 {
0045     if (fInstance == nullptr) {
0046         static InformationKeeper parParser;
0047         fInstance = &parParser;
0048     }
0049     return fInstance;
0050 }
0051 
0052 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0053 
0054 InformationKeeper::InformationKeeper() 
0055 {
0056     fPhysOutFolderName = "phys_output";
0057     fChemInputFolderName = "chem_input";
0058 }
0059 
0060 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0061 
0062 void InformationKeeper::WritePhysGeo()
0063 {
0064     //Create a file containing geopath and Physlist in "FS build directory" for chemStage and anlysis
0065     std::string fname = "imp.info";
0066     std::ofstream fout(fname);
0067     fout<<"====> Auto_generated file. Do not delete me !!!\n";
0068     fout<<"====> The file conveys some information for chem_geo and Analysis modules!!!\n";
0069     fout<<"_geocellpath "<<fCellDefFilePath<<"\n";
0070     for (const auto & entry : fVoxelDefFilesList) {
0071         fout<<"_geovolxelpath "<<std::string(entry)<<"\n";
0072     }
0073     fout<<"_physList "<<fPhysDNAName<<"\n";
0074     fout<<"_numberOfBasepairs "<<fTotalNbBpPlacedInGeo<<"\n";
0075     fout<<"_numberOfHistones "<<fTotalNbHistonePlacedInGeo<<"\n";
0076     fout<<"_nucleusVolume "<<fNucleusVolume<<"\n"; // m3
0077     fout<<"_nucleusMassDensity "<<fNucleusMassDensity<<"\n"; // kg/m3
0078     fout<<"_nucleusMass "<<fNucleusVolume*fNucleusMassDensity; //kg
0079     fout.close();
0080 }
0081 
0082 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......