diff --git a/.gitignore b/.gitignore index b8f21f7fc1b55760f6ea505751b81b08b1b745dc..c7240d8b5cb6752c7581e36be09a66923008e1e3 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ Projects/E805/CUT .last_* npanalysis npreader +npcalibration nponline nptool-cleaner nptool-installer diff --git a/NPLib/Core/NPDetectorFactory.cxx b/NPLib/Core/NPDetectorFactory.cxx index 6d86fda1a30a6fec621b49d022996dcadd38c200..fd329bd3fa02d114f0277e21201016fe0920b296 100644 --- a/NPLib/Core/NPDetectorFactory.cxx +++ b/NPLib/Core/NPDetectorFactory.cxx @@ -123,7 +123,7 @@ NPL::VTreeReader* NPL::DetectorFactory::ConstructReader(std::string Token) { if (m_ConstructReader.find(Token) != m_ConstructReader.end()) return m_ConstructReader[Token](); else { - std::cout << "Warning: Detector with Token " << Token << " has no Constructor or no Library" << std::endl; + std::cout << "Warning: Detector with Token (constructReader) " << Token << " has no Constructor or no Library" << std::endl; if (LibError) { std::cout << "Library loading failes with error: " << std::endl; std::cout << LibError << std::endl << std::endl; diff --git a/NPLib/Core/NPDetectorManager.cxx b/NPLib/Core/NPDetectorManager.cxx index 505957d398211c006cf2c3bad6fd0019d536fdee..6805986b6aa34c48fa9b93a3a380f605f1732cf4 100644 --- a/NPLib/Core/NPDetectorManager.cxx +++ b/NPLib/Core/NPDetectorManager.cxx @@ -64,6 +64,7 @@ NPL::DetectorManager::DetectorManager(){ m_InitializeRootHistogramsCalibPtr = &NPL::VDetector::InitializeRootHistogramsCalib; m_FillHistogramsCalibPtr = &NPL::VDetector::FillHistogramsCalib; m_WriteHistogramsCalibPtr = &NPL::VDetector::WriteHistogramsCalib; + m_DoCalibrationPtr = &NPL::VDetector::DoCalibration; m_FillSpectra = NULL; m_CheckSpectra = NULL; m_SpectraServer = NULL; @@ -112,6 +113,25 @@ NPL::DetectorManager::~DetectorManager(){ m_SpectraServer->Destroy(); } +/////////////////////////////////////////////////////////////////////////////// +void NPL::DetectorManager::ReadDoCalibrationFile(std::string Path) { + NPL::InputParser parser(Path); + std::set<std::string> check; + std::vector<std::string> token = parser.GetAllBlocksToken(); + + std::map<std::string, VDetector*>::iterator it; + + for (it = m_Detector.begin(); it != m_Detector.end(); it++) + { + if(NPOptionManager::getInstance()->GetVerboseLevel()){ + std::cout << "/////////////////////////////////////////" << std::endl; + std::cout << "//// Adding Detector for DoCalibration " << it->first << std::endl; + } + it->second->ReadDoCalibration(parser); + if(NPOptionManager::getInstance()->GetVerboseLevel()) + std::cout << "/////////////////////////////////////////" << std::endl; + } +} /////////////////////////////////////////////////////////////////////////////// // Read stream at ConfigFile and pick-up Token declaration of Detector void NPL::DetectorManager::ReadConfigurationFile(std::string Path) { @@ -397,6 +417,18 @@ void NPL::DetectorManager::WriteHistogramsCalib(){ } } +void NPL::DetectorManager::DoCalibration(){ + std::map<std::string,VDetector*>::iterator it; + + if(NPOptionManager::getInstance()->IsCalibration()) + for (it = m_Detector.begin(); it != m_Detector.end(); ++it){ + (it->second->*m_DoCalibrationPtr)(); + } + else{ + std::cout << "Warning : IsCalibration not recognized, DoCalibration not working" << std::endl; + } +} + /////////////////////////////////////////////////////////////////////////////// void NPL::DetectorManager::AddDetector(std::string DetectorName , VDetector* newDetector){ m_Detector[DetectorName] = newDetector; diff --git a/NPLib/Core/NPDetectorManager.h b/NPLib/Core/NPDetectorManager.h index 8a4e65bb5d6146d75ea46a707dfafe9ef43c9f52..30eb66dcce0fa03f181f1047e3ef4ca7d5ebafae 100644 --- a/NPLib/Core/NPDetectorManager.h +++ b/NPLib/Core/NPDetectorManager.h @@ -54,12 +54,14 @@ namespace NPL{ public: void ReadConfigurationFile(std::string Path); + void ReadDoCalibrationFile(std::string Path); void BuildPhysicalEvent(); void InitializeRootInput(); void InitializeRootOutput(); void InitializeRootHistogramsCalib(); void FillHistogramsCalib(); void WriteHistogramsCalib(); + void DoCalibration(); void SetTreeReader(TTreeReader* TreeReader); void AddDetector(std::string,VDetector*); void AddDetectorReader(std::string,VTreeReader*); @@ -104,6 +106,7 @@ namespace NPL{ VDetector_FuncPtr m_InitializeRootHistogramsCalibPtr; VDetector_FuncPtr m_FillHistogramsCalibPtr; VDetector_FuncPtr m_WriteHistogramsCalibPtr; + VDetector_FuncPtr m_DoCalibrationPtr; VDetector_SetReader m_SetTreeReaderPtr; VDetector_FuncPtr m_FillSpectra; VDetector_FuncPtr m_CheckSpectra; diff --git a/NPLib/Core/NPOptionManager.cxx b/NPLib/Core/NPOptionManager.cxx index 64eb1da35e55e1962a26217be25a0ee7ff2eeca9..deec47209103fce307bf7af0d8dabbad412a8f90 100644 --- a/NPLib/Core/NPOptionManager.cxx +++ b/NPLib/Core/NPOptionManager.cxx @@ -103,6 +103,7 @@ void NPOptionManager::ReadTheInputArgument(int argc, char** argv){ fDefaultOutputTreeName = "NPTool_Tree"; fDefaultRunToReadFileName = "defaultRunToTreat.txt"; fDefaultCalibrationFileName = "defaultCalibration.txt"; + fDefaultDoCalibrationFileName = "defaultDoCalibration.txt"; fDefaultG4MacroPath = "defaultG4MacroPath.txt"; // Assigned values fReactionFileName = fDefaultReactionFileName; @@ -222,6 +223,8 @@ void NPOptionManager::ReadTheInputArgument(int argc, char** argv){ else if (argument == "--definition" && argc >= i + 1) {std::string def= argv[++i];fDefinition.insert(def);} + else if (argument == "-DC" && argc >= i + 1) fDoCalibrationFileName = argv[++i] ; + else{ SendErrorAndExit(argument.c_str()); } @@ -325,6 +328,35 @@ void NPOptionManager::CheckEventGenerator(){ ConfigFile.close(); } +void NPOptionManager::CheckDoCalibrationConfiguration(){ + bool checkFile = true; + + // NPTool path + std::string GlobalPath = getenv("NPTOOL"); + std::string StandardPath = GlobalPath + "/Inputs/DoCalibrationConfiguration/" + fDoCalibrationFileName; + + // ifstream to configfile + std::ifstream ConfigFile; + + // test if config file is in local path + ConfigFile.open(fDoCalibrationFileName.c_str()); + if (!ConfigFile.is_open()) { + ConfigFile.open(StandardPath.c_str()); + if (!ConfigFile.is_open()) { // if not, assign standard path + checkFile = false; + } + else { + fDoCalibrationFileName = StandardPath; + } + } + if (!checkFile && fDoCalibrationFileName != fDefaultDoCalibrationFileName) { // if file does not exist + SendErrorAndExit("DoCalibrationConfiguration"); + } + + // close ConfigFile + ConfigFile.close(); + +} //////////////////////////////////////////////////////////////////////////////// void NPOptionManager::CheckDetectorConfiguration(){ bool checkFile = true; @@ -387,6 +419,9 @@ bool NPOptionManager::IsDefault(const char* type) const{ else if (stype == "Calibration") { if (fCalibrationFileName == fDefaultCalibrationFileName) result = true; } + else if (stype == "DoCalibration") { + if (fDoCalibrationFileName == fDefaultDoCalibrationFileName) result = true; + } else if (stype == "RunToTreat") { if (fRunToReadFileName == fDefaultRunToReadFileName) result = true; } diff --git a/NPLib/Core/NPOptionManager.h b/NPLib/Core/NPOptionManager.h index 4caa6cdaa6874b9cfe7411343a35519932d8ca8f..30c6283a8ecd274ba9b19bab22b836b6a2a9638e 100644 --- a/NPLib/Core/NPOptionManager.h +++ b/NPLib/Core/NPOptionManager.h @@ -73,6 +73,7 @@ class NPOptionManager{ void CheckArguments(); void CheckEventGenerator(); void CheckDetectorConfiguration(); + void CheckDoCalibrationConfiguration(); void CheckG4Macro(); void CreateRunToTreatFile(std::string file, std::string tree ); public: @@ -94,6 +95,7 @@ class NPOptionManager{ std::string GetDetectorFile() {return fDetectorFileName;} std::string GetRunToReadFile() {return fRunToReadFileName;} std::string GetCalibrationFile() {return fCalibrationFileName;} + std::string GetDoCalibrationFile() {return fDoCalibrationFileName;} std::string GetOutputFile() {return fOutputFileName;} std::string GetOutputTreeName() {return fOutputTreeName;} std::string GetG4MacroPath() {return fG4MacroPath;} @@ -126,6 +128,7 @@ class NPOptionManager{ // Setters void SetReactionFile(const std::string& name) {fReactionFileName = name;CheckEventGenerator();} void SetDetectorFile(const std::string& name) {fDetectorFileName = name;CheckDetectorConfiguration();} + void SetDoCalibrationFile(const std::string& name) {fDoCalibrationFileName = name;CheckDoCalibrationConfiguration();} void SetRunToReadFile(const std::string& name) {fRunToReadFileName = name;} void SetVerboseLevel(int VerboseLevel) {fVerboseLevel = VerboseLevel;} void SetIsAnalysis(bool val=true){fIsAnalysis=val;}; @@ -142,6 +145,7 @@ class NPOptionManager{ std::string fDefaultDetectorFileName; std::string fDefaultRunToReadFileName; std::string fDefaultCalibrationFileName; + std::string fDefaultDoCalibrationFileName; std::string fDefaultOutputFileName; std::string fDefaultOutputTreeName; std::string fDefaultG4MacroPath; @@ -151,6 +155,7 @@ class NPOptionManager{ std::string fDetectorFileName; std::string fRunToReadFileName; std::string fCalibrationFileName; + std::string fDoCalibrationFileName; std::string fOutputFileName; std::string fOutputTreeName; bool fIsSplit; // One tree per detector diff --git a/NPLib/Core/NPVDetector.h b/NPLib/Core/NPVDetector.h index 1e587764d542148f49ce605d22e032daa51de3f6..ff2fb13dbb42bb127e467ac77f79a6983cdd2664 100644 --- a/NPLib/Core/NPVDetector.h +++ b/NPLib/Core/NPVDetector.h @@ -50,6 +50,9 @@ namespace NPL { // Read stream at ConfigFile to pick-up parameters of detector (Position,...) using Token virtual void ReadConfiguration(NPL::InputParser){}; + + // Read stream at DoCalibration to pick-up which parameters to calibrate (Position,...) using Token + virtual void ReadDoCalibration(NPL::InputParser){}; // Add Parameter to the CalibrationManger virtual void AddParameterToCalibrationManager(){}; @@ -73,6 +76,9 @@ namespace NPL { // Write histograms for calibration virtual void WriteHistogramsCalib(){}; + + + virtual void DoCalibration(){}; // This method is called at each event read from the Input Tree. Aime is to build treat Raw dat in order to extract // physical parameter. diff --git a/NPLib/Core/RootHistogramsCalib.cxx b/NPLib/Core/RootHistogramsCalib.cxx index ff6ed9a3134473cb8f994a72104108ecb782285b..7298d9f52f548dfdc1d4928a22b16d2bfbd68c57 100644 --- a/NPLib/Core/RootHistogramsCalib.cxx +++ b/NPLib/Core/RootHistogramsCalib.cxx @@ -67,8 +67,12 @@ RootHistogramsCalib::RootHistogramsCalib(std::string fileNameBase){ pBaseName = NPOptionManager::getInstance()->GetCalibrationOutputPath(); else pBaseName="./"; + + if(fileNameBase.at(0)!='/' && pBaseName.at(pBaseName.length() - 1)!='/') + pBaseName += "/"+fileNameBase; + else + pBaseName+=fileNameBase; - pBaseName += "/"+fileNameBase; if (fileNameBase.find("root")==std::string::npos) pBaseName += ".root"; diff --git a/NPLib/Core/RootHistogramsCalib.h b/NPLib/Core/RootHistogramsCalib.h index db79d9b85a2e156599b455961c6d9aee14fff004..1dab362cd3c91ee073fe5830cfe7e57fee18356f 100644 --- a/NPLib/Core/RootHistogramsCalib.h +++ b/NPLib/Core/RootHistogramsCalib.h @@ -30,6 +30,7 @@ #include "TAsciiFile.h" // ROOT headers +#include "TGraphErrors.h" #include "TH1F.h" #include "TH2F.h" #include "TFile.h" @@ -73,6 +74,7 @@ public: TFile* GetFile(std::string name="global") ; std::map<TString,std::map<TString,TH1F*>>* GetTH1Map(){return TH1Map;}; std::map<TString,std::map<TString,TH2F*>>* GetTH2Map(){return TH2Map;}; + std::map<TString,std::map<TString,TGraphErrors*>>* GetTGraphMap(){return TGraphMap;}; void Fill(); private: @@ -82,6 +84,7 @@ private: TFile* pRootFile = nullptr; std::map<TString,std::map<TString,TH1F*>>* TH1Map = new std::map<TString,std::map<TString,TH1F*>>; std::map<TString,std::map<TString,TH2F*>>* TH2Map = new std::map<TString,std::map<TString,TH2F*>>; + std::map<TString,std::map<TString,TGraphErrors*>>* TGraphMap = new std::map<TString,std::map<TString,TGraphErrors*>>; }; #endif // ROOTHISTOCALIB_HH diff --git a/NPLib/Detectors/MUST2/CMakeLists.txt b/NPLib/Detectors/MUST2/CMakeLists.txt index b0b3d5cd793e1ae2f04226cf3bf40094b984b38c..c674ad17c3f488d42371ddb9c6e4aefac98c773d 100644 --- a/NPLib/Detectors/MUST2/CMakeLists.txt +++ b/NPLib/Detectors/MUST2/CMakeLists.txt @@ -3,6 +3,6 @@ add_custom_command(OUTPUT TMust2DataDict.cxx COMMAND ${CMAKE_BINARY_DIR}/scripts add_custom_command(OUTPUT TMust2PhysicsReaderDict.cxx COMMAND ${CMAKE_BINARY_DIR}/scripts/build_dict.sh TMust2PhysicsReader.h TMust2PhysicsReaderDict.cxx TMust2PhysicsReader.rootmap libNPMUST2.dylib DEPENDS TMust2PhysicsReader.h) add_library(NPMUST2 SHARED TMust2Data.cxx TMust2Physics.cxx TMust2PhysicsReader.cxx TMust2DataDict.cxx TMust2PhysicsDict.cxx TMust2PhysicsReaderDict.cxx TMust2Spectra.cxx) #add_library(NPMUST2 SHARED TMust2Data.cxx TMust2Physics.cxx TMust2DataDict.cxx TMust2PhysicsDict.cxx TMust2Spectra.cxx) -target_link_libraries(NPMUST2 ${ROOT_LIBRARIES} -lTreePlayer NPCore) +target_link_libraries(NPMUST2 ${ROOT_LIBRARIES} -lTreePlayer -lSpectrum NPCore) #install(FILES TMust2Data.h TMust2Physics.h TMust2Spectra.h DESTINATION ${CMAKE_INCLUDE_OUTPUT_DIRECTORY}) install(FILES TMust2Data.h TMust2Physics.h TMust2Spectra.h TMust2PhysicsReader.h DESTINATION ${CMAKE_INCLUDE_OUTPUT_DIRECTORY}) diff --git a/NPLib/Detectors/MUST2/TMust2Physics.cxx b/NPLib/Detectors/MUST2/TMust2Physics.cxx index a8b9ed3378b104c49438bc6be560a9ce1d2b90d2..51a9a3754b3755ff77d040dbd7069d7054c0b582 100644 --- a/NPLib/Detectors/MUST2/TMust2Physics.cxx +++ b/NPLib/Detectors/MUST2/TMust2Physics.cxx @@ -27,15 +27,19 @@ using namespace MUST2_LOCAL; #include <limits> #include <sstream> #include <stdlib.h> +#include <filesystem> // NPL // #include "NPDetectorFactory.h" +#include "TSpectrum.h" #include "NPInputParser.h" #include "NPOptionManager.h" #include "NPSystemOfUnits.h" +#include "RootHistogramsCalib.h" #include "RootInput.h" #include "RootOutput.h" #include "TAsciiFile.h" +#include "TF1.h" using namespace NPUNITS; // ROOT #include "TChain.h" @@ -1086,6 +1090,97 @@ void TMust2Physics::ReadConfiguration(NPL::InputParser parser) { InitializeStandardParameter(); ReadAnalysisConfig(); } + + +void TMust2Physics::ReadDoCalibration(NPL::InputParser parser) { + vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("M2Telescope"); + vector<NPL::InputBlock*> Energyblocks = parser.GetAllBlocksWithToken("EnergyCalibrationParameters"); + vector<NPL::InputBlock*> CSIblocks = parser.GetAllBlocksWithToken("CSICalibrationParameters"); + //if (NPOptionManager::getInstance()->GetVerboseLevel()) + //cout << "//// " << blocks.size() << " Telescope found " << endl; + + vector<string> calibs = {"TelescopeNumber","Time","Energy","CSI"}; + vector<string> EnergyParameters = {"TelescopeNumber","XThreshold","YThreshold","AlphaFitType"}; + vector<string> CSIParameters = {"TelescopeNumber","CsIEnergyXThreshold","CsIEnergyYThreshold","CSIEThreshold"}; + + + for (unsigned int i = 0; i < blocks.size(); i++) { + if (blocks[i]->HasTokenList(calibs)) { + unsigned int TelescopeNumber = blocks[i]->GetInt("TelescopeNumber"); + if (NPOptionManager::getInstance()->GetVerboseLevel()) + cout << endl << "//// Must2 Telescope " << TelescopeNumber << endl; + DoCalibrationTime[TelescopeNumber] = blocks[i]->GetInt("Time"); + DoCalibrationEnergy[TelescopeNumber] = blocks[i]->GetInt("Energy"); + DoCalibrationCsI[TelescopeNumber]= blocks[i]->GetInt("CSI"); + if(DoCalibrationEnergy[TelescopeNumber] == 1){ + IsCalibEnergy = true; + if(EnergyXThreshold.count(TelescopeNumber) == 0){ + EnergyXThreshold[TelescopeNumber] = 8192; + } + if(EnergyYThreshold.count(TelescopeNumber) == 0){ + EnergyYThreshold[TelescopeNumber] = 8192; + } + if(AlphaFitType.count(TelescopeNumber) == 0){ + AlphaFitType[TelescopeNumber] = "NoSatellite"; + } + } + if(DoCalibrationCsI[TelescopeNumber] == 1){ + IsCalibCSI = true; + if(CSIEnergyXThreshold.count(TelescopeNumber) == 0){ + CSIEnergyXThreshold[TelescopeNumber] = 0; + } + if(CSIEnergyYThreshold.count(TelescopeNumber) == 0){ + CSIEnergyYThreshold[TelescopeNumber] = 0; + } + if(CSIEThreshold.count(TelescopeNumber) == 0){ + CSIEThreshold[TelescopeNumber] = 8192; + } + } + } + else { + cout << "ERROR: Missing token for M2Telescope DoCalibration blocks, check your " + "input " + "file" + << endl; + exit(1); + } + } + for (unsigned int i = 0; i < Energyblocks.size(); i++) { + if (Energyblocks[i]->HasTokenList(EnergyParameters)) { + unsigned int TelescopeNumber = Energyblocks[i]->GetInt("TelescopeNumber"); + if (NPOptionManager::getInstance()->GetVerboseLevel()) + cout << endl << "//// Energy Calibration parameters for MUST2 Telescope " << TelescopeNumber << endl; + EnergyXThreshold[TelescopeNumber] = Energyblocks[i]->GetInt("XThreshold"); + EnergyYThreshold[TelescopeNumber] = Energyblocks[i]->GetInt("YThreshold"); + AlphaFitType[TelescopeNumber] = Energyblocks[i]->GetString("AlphaFitType"); + } + else { + cout << "ERROR: Missing token for EnergyParam DoCalibration blocks, check your " + "input " + "file" + << endl; + exit(1); + } + } + for (unsigned int i = 0; i < CSIblocks.size(); i++) { + if (CSIblocks[i]->HasTokenList(CSIParameters)) { + unsigned int TelescopeNumber = CSIblocks[i]->GetInt("TelescopeNumber"); + if (NPOptionManager::getInstance()->GetVerboseLevel()) + cout << endl << "//// CSI Calibration parameters for MUST2 Telescope " << TelescopeNumber << endl; + CSIEnergyXThreshold[TelescopeNumber] = CSIblocks[i]->GetInt("CsIEnergyXThreshold"); + CSIEnergyYThreshold[TelescopeNumber] = CSIblocks[i]->GetInt("CsIEnergyYThreshold"); + CSIEThreshold[TelescopeNumber] = CSIblocks[i]->GetInt("CSIEThreshold"); + } + else { + cout << "ERROR: Missing token for CSI DoCalibration blocks, check your " + "input " + "file" + << endl; + exit(1); + } + } +} + ////////////////////////////////////////////////////////////////////////// void TMust2Physics::InitSpectra() { m_Spectra = new TMust2Spectra(m_NumberOfTelescope); } @@ -1435,8 +1530,802 @@ TVector3 TMust2Physics::GetTelescopeNormal(const int i) const { TVector3 Normal = U.Cross(V); return (Normal.Unit()); + +} +void TMust2Physics::InitializeRootHistogramsCalib(){ + std::cout << "Initialize Histograms" << std::endl; + map<int, bool>::iterator it; + for (it = DoCalibrationEnergy.begin(); it != DoCalibrationEnergy.end(); it++) + { + if(it->second) + { + InitializeRootHistogramsEnergyF(it->first); + } + } + for (it = DoCalibrationTime.begin(); it != DoCalibrationTime.end(); it++) + { + if(it->second) + { + InitializeRootHistogramsTimeF(it->first); + } + } + for (it = DoCalibrationCsI.begin(); it != DoCalibrationCsI.end(); it++) + { + if(it->second) + { + InitializeRootHistogramsCSIF(it->first); + } + } +} + +void TMust2Physics::InitializeRootHistogramsCSIF(Int_t DetectorNumber){ + if(NPOptionManager::getInstance()->IsReader() == true) { + TTreeReader* inputTreeReader = RootInput::getInstance()->GetTreeReader(); + GATCONFMASTER_ = new TTreeReaderValue<unsigned short>(*inputTreeReader,"GATCONFMASTER"); + } + unsigned int NbCSI = 16; + auto TH2Map = RootHistogramsCalib::getInstance()->GetTH2Map(); + auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap(); + + for (Int_t j = 0; j < NbCSI; j++) { + TString hnameCSIE = Form("hMM%d_CSI_E%d", DetectorNumber, j+1); + TString htitleCSIE = Form("MM%d_CSI_E%d", DetectorNumber, j+1); + (*TH2Map)["MUST2"][hnameCSIE] = new TH2F(hnameCSIE, htitleCSIE, 8192, 8192, 16384, 2000, 0, 60); + + TString hnameFITCSIE = Form("hMM%d_FITCSI_E%d", DetectorNumber, j+1); + TString htitleFITCSIE = Form("MM%d_FITCSI_E%d", DetectorNumber, j+1); + (*TGraphMap)["MUST2"][hnameFITCSIE] = new TGraphErrors(3); + (*TGraphMap)["MUST2"][hnameFITCSIE]->SetTitle(htitleFITCSIE); + (*TGraphMap)["MUST2"][hnameFITCSIE]->SetName(hnameFITCSIE); + } +} + +void TMust2Physics::InitializeRootHistogramsEnergyF(Int_t DetectorNumber){ + unsigned int NbStrips = 128; + auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map(); + auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap(); + + for (Int_t j = 0; j < NbStrips; j++) { + TString hnameXE = Form("hMM%d_STRX_E%d", DetectorNumber, j+1); + TString htitleXE = Form("MM%d_STRX_E%d", DetectorNumber, j+1); + (*TH1Map)["MUST2"][hnameXE] = new TH1F(hnameXE, htitleXE, 16384, 0, 16384); + // strips YE + TString hnameYE = Form("hMM%d_STRY_E%d", DetectorNumber, j+1); + TString htitleYE = Form("MM%d_STRY_E%d", DetectorNumber, j+1); + (*TH1Map)["MUST2"][hnameYE] = new TH1F(hnameYE, htitleYE, 16384, 0, 16384); + + TString hnameFITXE = Form("hMM%d_FITX_E%d", DetectorNumber, j+1); + TString htitleFITXE = Form("MM%d_FITX_E%d", DetectorNumber, j+1); + (*TGraphMap)["MUST2"][hnameFITXE] = new TGraphErrors(3); + (*TGraphMap)["MUST2"][hnameFITXE]->SetTitle(htitleFITXE); + (*TGraphMap)["MUST2"][hnameFITXE]->SetName(hnameFITXE); + + TString hnameFITYE = Form("hMM%d_FITY_E%d", DetectorNumber, j+1); + TString htitleFITYE = Form("MM%d_FITY_E%d", DetectorNumber, j+1); + (*TGraphMap)["MUST2"][hnameFITYE] = new TGraphErrors(3); + (*TGraphMap)["MUST2"][hnameFITYE]->SetTitle(htitleFITYE); + (*TGraphMap)["MUST2"][hnameFITYE]->SetName(hnameFITYE); + } + TString hname =Form("SigmaFit_T%d",DetectorNumber) ; + (*TH1Map)["MUST2"][hname] = new TH1F("Sigma", "Sigma from fit (channel)", 80, 0,10); + + hname =Form("Dispersion_T%d",DetectorNumber); + (*TH1Map)["MUST2"][hname] = new TH1F("Dispersion", "Dispersion from Zero Extrapolation (channel)", 40, -20,20); + + hname =Form("coeffX_a_T%d",DetectorNumber); + (*TGraphMap)["MUST2"][hname] = new TGraphErrors(NbStrips); + (*TGraphMap)["MUST2"][hname]->SetTitle(hname); + (*TGraphMap)["MUST2"][hname]->SetName(hname); + (*TGraphMap)["MUST2"][hname]->SetMarkerStyle(2); + (*TGraphMap)["MUST2"][hname]->Draw("ap"); + + hname =Form("coeffX_b_T%d",DetectorNumber); + (*TGraphMap)["MUST2"][hname] = new TGraphErrors(NbStrips); + (*TGraphMap)["MUST2"][hname]->SetTitle(hname); + (*TGraphMap)["MUST2"][hname]->SetName(hname); + (*TGraphMap)["MUST2"][hname]->SetMarkerStyle(2); + (*TGraphMap)["MUST2"][hname]->Draw("ap"); + + hname =Form("coeffY_a_T%d",DetectorNumber); + (*TGraphMap)["MUST2"][hname] = new TGraphErrors(NbStrips); + (*TGraphMap)["MUST2"][hname]->SetTitle(hname); + (*TGraphMap)["MUST2"][hname]->SetName(hname); + (*TGraphMap)["MUST2"][hname]->SetMarkerStyle(2); + (*TGraphMap)["MUST2"][hname]->Draw("ap"); + + hname =Form("coeffY_b_T%d",DetectorNumber); + (*TGraphMap)["MUST2"][hname] = new TGraphErrors(NbStrips); + (*TGraphMap)["MUST2"][hname]->SetTitle(hname); + (*TGraphMap)["MUST2"][hname]->SetName(hname); + (*TGraphMap)["MUST2"][hname]->SetMarkerStyle(2); + (*TGraphMap)["MUST2"][hname]->Draw("ap"); +} + +void TMust2Physics::FillHistogramsCalib(){ + map<int, bool>::iterator it; + if (IsCalibEnergy) + { + if(NPOptionManager::getInstance()->IsReader()) + m_EventData = &(**r_ReaderEventData); + FillHistogramsCalibEnergyF(); + std::cout << "Test pas bien" << std::endl; + } + + if(IsCalibCSI){ + if(!IsCalibEnergy && NPOptionManager::getInstance()->IsReader() && **(GATCONFMASTER_) > 0) + { + m_EventData = &(**r_ReaderEventData); + FillHistogramsCalibCSIF(); + } + // std::cout << "Test bien" << std::endl; + } + //if(NPOptionManager::getInstance()->IsReader() == true && IsCalibEnergy) { + // // std::cout << "Test pas bien" << std::endl; + // m_EventData = &(**r_ReaderEventData); + //} + //else if(NPOptionManager::getInstance()->IsReader() == true && IsCalibCSI && **(GATCONFMASTER_) > 0) { + // // std::cout << "Test bien" << std::endl; + // m_EventData = &(**r_ReaderEventData); + //} +// for (it = DoCalibrationTime.begin(); it != DoCalibrationTime.end(); it++) +// { +// if(it->second) +// { +// FillHistogramsCalibTimeF(); +// } +// } + +} + +void TMust2Physics::FillHistogramsCalibEnergyF(){ + auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map(); + TString hnameXE, hnameYE; + for(UShort_t i = 0; i < m_EventData->GetMMStripXEMult(); i++){ + unsigned int DetectorNbr = m_EventData->GetMMStripXEDetectorNbr(i); + unsigned int StripNbr = m_EventData->GetMMStripXEStripNbr(i); + unsigned int Energy = m_EventData->GetMMStripXEEnergy(i); + if(DoCalibrationEnergy[DetectorNbr] && EnergyXThreshold[DetectorNbr] < Energy) + { + hnameXE = Form("hMM%d_STRX_E%d", DetectorNbr, StripNbr); + (*TH1Map)["MUST2"][hnameXE]->Fill(Energy); + } + } + for(UShort_t i = 0; i < m_EventData->GetMMStripYEMult(); i++){ + unsigned int DetectorNbr = m_EventData->GetMMStripYEDetectorNbr(i); + unsigned int StripNbr = m_EventData->GetMMStripYEStripNbr(i); + unsigned int Energy = m_EventData->GetMMStripYEEnergy(i); + if(DoCalibrationEnergy[DetectorNbr] && EnergyYThreshold[DetectorNbr] > Energy) + { + hnameYE = Form("hMM%d_STRY_E%d", DetectorNbr, StripNbr); + (*TH1Map)["MUST2"][hnameYE]->Fill(Energy); + } + } +} + +void TMust2Physics::FillHistogramsCalibCSIF(){ + DoCalibrationCSIPreTreat(); + auto TH2Map = RootHistogramsCalib::getInstance()->GetTH2Map(); + + double matchSigma = m_StripEnergyMatchingSigma; + double NmatchSigma = m_StripEnergyMatchingNumberOfSigma; + + unsigned int StripXMult =m_PreTreatedData->GetMMStripXEMult(); + unsigned int StripYMult =m_PreTreatedData->GetMMStripYEMult(); + + // for(unsigned int ix = 0; ix < StripXMult; ix++){ + // for(unsigned int iy = 0; iy < StripYMult; iy++){ + if(StripXMult == 1 && StripYMult == 1){ + unsigned int StripXDetNbr =m_PreTreatedData->GetMMStripXEDetectorNbr(0); + unsigned int StripYDetNbr =m_PreTreatedData->GetMMStripYEDetectorNbr(0); + + // Condition ensures that the calibration is done only for Detectors input + if (DoCalibrationCsI.find(StripXDetNbr) != DoCalibrationCsI.end() && StripXDetNbr == StripYDetNbr) { + unsigned int DetNbr = StripXDetNbr; + + // Declaration of variable for clarity + double StripXEnergy = m_PreTreatedData->GetMMStripXEEnergy(0); + double StripXNbr = m_PreTreatedData->GetMMStripXEStripNbr(0); + + double StripYEnergy = m_PreTreatedData->GetMMStripYEEnergy(0); + double StripYNbr = m_PreTreatedData->GetMMStripYEStripNbr(0); + + if (abs((StripXEnergy - StripYEnergy) / 2.) < NmatchSigma * matchSigma) { + + + unsigned int CSIMult =m_PreTreatedData->GetMMCsIEMult(); + + for (unsigned int icsi = 0; icsi < CSIMult; ++icsi) { + + unsigned int CSIDetNbr =m_PreTreatedData->GetMMCsIEDetectorNbr(icsi); + + if(StripXDetNbr == CSIDetNbr){ + + unsigned int Cristal =m_PreTreatedData->GetMMCsIECristalNbr(icsi); + + if (Match_Si_CsI(StripXNbr,StripYNbr, Cristal, CSIDetNbr)) { + unsigned int CSIE =m_PreTreatedData->GetMMCsIEEnergy(icsi); + TString hnameCSIE = Form("hMM%d_CSI_E%d", CSIDetNbr, Cristal); + (*TH2Map)["MUST2"][hnameCSIE]->Fill(CSIE,StripXEnergy); + } + } + } + } + } + } + //TString hnameCSIE, hnameCSIE; + //for(UShort_t i = 0; i < m_EventData->GetMMCsIEMult(); i++){ + // unsigned int DetectorNbr = m_EventData->GetMMCsIEDetectorNbr(i); + // unsigned int CristalNbr = m_EventData->GetMMCsIECristalNbr(i); + // unsigned int Energy = m_EventData->GetMMCsIEEnergy(i); + // if(DoCalibrationCsI[DetectorNbr] && CalibFile[DetectorNbr] != "" && SiEThreshold[DetectorNbr] < ) + // { + // hnameXE = Form("hMM%d_STRX_E%d", DetectorNbr, StripNbr); + // (*TH1Map)["MUST2"][hnameXE]->Fill(Energy); + // } + //} + //for(UShort_t i = 0; i < m_EventData->GetMMStripYEMult(); i++){ + // unsigned int DetectorNbr = m_EventData->GetMMStripYEDetectorNbr(i); + // unsigned int StripNbr = m_EventData->GetMMStripYEStripNbr(i); + // unsigned int Energy = m_EventData->GetMMStripYEEnergy(i); + // if(DoCalibrationEnergy[DetectorNbr] && EnergyYThreshold[DetectorNbr] > Energy) + // { + // hnameYE = Form("hMM%d_STRY_E%d", DetectorNbr, StripNbr); + // (*TH1Map)["MUST2"][hnameYE]->Fill(Energy); + // } + //} +} + +void TMust2Physics::DoCalibrationCSIPreTreat() { + ClearPreTreatedData(); + m_StripXEMult = m_EventData->GetMMStripXEMult(); + m_StripYEMult = m_EventData->GetMMStripYEMult(); + m_CsIEMult = m_EventData->GetMMCsIEMult(); + + // X + // E + for (unsigned int i = 0; i < m_StripXEMult; ++i) { + if (m_EventData->GetMMStripXEEnergy(i) > CSIEnergyXThreshold[m_EventData->GetMMStripXEDetectorNbr(i)] && + IsValidChannel(0, m_EventData->GetMMStripXEDetectorNbr(i), m_EventData->GetMMStripXEStripNbr(i))) { + double EX = fSi_X_E(m_EventData, i); + m_PreTreatedData->SetStripXE(m_EventData->GetMMStripXEDetectorNbr(i), m_EventData->GetMMStripXEStripNbr(i), EX); + } + } + // Y + // E + for (unsigned int i = 0; i < m_StripYEMult; ++i) { + if (m_EventData->GetMMStripYEEnergy(i) < CSIEnergyXThreshold[m_EventData->GetMMStripXEDetectorNbr(i)] && + IsValidChannel(1, m_EventData->GetMMStripYEDetectorNbr(i), m_EventData->GetMMStripYEStripNbr(i))) { + double EY = fSi_Y_E(m_EventData, i); + m_PreTreatedData->SetStripYE(m_EventData->GetMMStripYEDetectorNbr(i), m_EventData->GetMMStripYEStripNbr(i), EY); + } + } + for (unsigned int i = 0; i < m_CsIEMult; ++i) { + if (m_EventData->GetMMCsIEEnergy(i) > CSIEThreshold[m_EventData->GetMMCsIEDetectorNbr(i)] && + IsValidChannel(3, m_EventData->GetMMCsIEDetectorNbr(i), m_EventData->GetMMCsIECristalNbr(i))) { + m_PreTreatedData->SetCsIE(m_EventData->GetMMCsIEDetectorNbr(i), m_EventData->GetMMCsIECristalNbr(i), m_EventData->GetMMCsIEEnergy(i)); + } + } + return; +} + +void TMust2Physics::WriteHistogramsCalib(){ + std::cout << "Writing Histograms\n"; + // map<int, bool>::iterator it; + // for (it = DoCalibrationTime.begin(); it != DoCalibrationTime.end(); it++) +// { + WriteHistogramsEnergyF(); +// } +// for (it = DoCalibrationTime.begin(); it != DoCalibrationTime.end(); it++) +// { + WriteHistogramsTimeF(); +// } +// for (it = DoCalibrationCsI.begin(); it != DoCalibrationCsI.end(); it++) +// { + WriteHistogramsCSIF(); +// } +} + +void TMust2Physics::WriteHistogramsCSIF(){ + auto File = RootHistogramsCalib::getInstance()->GetFile(); + auto TH2Map = RootHistogramsCalib::getInstance()->GetTH2Map(); + auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap(); + unsigned int NbCSI = 16; + + if(!File->GetDirectory("MUST2")) + File->mkdir("MUST2"); + File->cd("MUST2"); + std::cout << "////////////////// TEST1\n"; + map<int, bool>::iterator it; + for (it = DoCalibrationCsI.begin(); it != DoCalibrationCsI.end(); it++) + { + std::cout << "////////////////// TEST2\n"; + std::cout << it->second <<"\n"; + if(it->second) + { + if(!gDirectory->GetDirectory(Form("M2_Telescope%d",it->first))) + { + std::cout << "////////////////// TEST3\n"; + gDirectory->mkdir(Form("M2_Telescope%d",it->first)); + } + std::cout << "////////////////// TEST4\n"; + gDirectory->cd(Form("M2_Telescope%d",it->first)); + gDirectory->mkdir("CSI"); + //gDirectory->mkdir("Time"); + gDirectory->cd("CSI"); + for (Int_t j = 1; j <= NbCSI; j++) { + TString hnameCSIE = Form("hMM%d_CSI_E%d", it->first, j); + (*TH2Map)["MUST2"][hnameCSIE]->Write(); + //(*TGraphMap)["MUST2"][hnameFITXE]->Write(); + //(*TGraphMap)["MUST2"][hnameFITYE]->Write(); + } + //(*TH1Map)["MUST2"][Form("Dispersion_T%d", it->first)]->Write(); + //(*TGraphMap)["MUST2"][Form("coeffX_a_T%d",it->first)]->Write(); + //(*TGraphMap)["MUST2"][Form("coeffY_a_T%d",it->first)]->Write(); + //(*TGraphMap)["MUST2"][Form("coeffX_b_T%d",it->first)]->Write(); + //(*TGraphMap)["MUST2"][Form("coeffY_b_T%d",it->first)]->Write(); + } + File->cd("MUST2"); + } + File->Close(); +} + +void TMust2Physics::WriteHistogramsEnergyF(){ + auto File = RootHistogramsCalib::getInstance()->GetFile(); + auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map(); + auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap(); + TString hnameXE, hnameYE; + unsigned int NbStrips = 128; + + if(!File->GetDirectory("MUST2")) + File->mkdir("MUST2"); + File->cd("MUST2"); + map<int, bool>::iterator it; + for (it = DoCalibrationEnergy.begin(); it != DoCalibrationEnergy.end(); it++) + { + if(it->second) + { + if(!gDirectory->GetDirectory(Form("M2_Telescope%d",it->first))) + gDirectory->mkdir(Form("M2_Telescope%d",it->first)); + gDirectory->cd(Form("M2_Telescope%d",it->first)); + gDirectory->mkdir("Energy"); + //gDirectory->mkdir("Time"); + gDirectory->cd("Energy"); + for (Int_t j = 0; j < NbStrips; j++) { + TString hnameXE = Form("hMM%d_STRX_E%d", it->first, j+1); + TString hnameYE = Form("hMM%d_STRY_E%d", it->first, j+1); + (*TH1Map)["MUST2"][hnameXE]->Write(); + (*TH1Map)["MUST2"][hnameYE]->Write(); + TString hnameFITXE = Form("hMM%d_FITX_E%d", it->first, j+1); + TString hnameFITYE = Form("hMM%d_FITY_E%d", it->first, j+1); + (*TGraphMap)["MUST2"][hnameFITXE]->Write(); + (*TGraphMap)["MUST2"][hnameFITYE]->Write(); + } + (*TH1Map)["MUST2"][Form("Dispersion_T%d", it->first)]->Write(); + (*TGraphMap)["MUST2"][Form("coeffX_a_T%d",it->first)]->Write(); + (*TGraphMap)["MUST2"][Form("coeffY_a_T%d",it->first)]->Write(); + (*TGraphMap)["MUST2"][Form("coeffX_b_T%d",it->first)]->Write(); + (*TGraphMap)["MUST2"][Form("coeffY_b_T%d",it->first)]->Write(); + } + File->cd("MUST2"); + } } +void TMust2Physics::DoCalibration(){ + std::cout << "Do Calibration" << std::endl; + map<int, bool>::iterator it; + for (it = DoCalibrationEnergy.begin(); it != DoCalibrationEnergy.end(); it++) + { + if(it->second) + { + MakeCalibFolders(); + DoCalibrationEnergyF(it->first); + } + } + for (it = DoCalibrationTime.begin(); it != DoCalibrationTime.end(); it++) + { + if(it->second) + { + DoCalibrationTimeF(it->first); + } + } + for (it = DoCalibrationCsI.begin(); it != DoCalibrationCsI.end(); it++) + { + if(it->second) + { + DoCalibrationCsIF(it->first); + } + } +} + +void TMust2Physics::DoCalibrationEnergyF(Int_t DetectorNumber){ + auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map(); + auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap(); + unsigned int NbStrips = 128; + ofstream *calib_file = new ofstream; + ofstream *dispersion_file = new ofstream; + + DefineCalibrationSource(); + + CreateCalibrationEnergyFiles(DetectorNumber,"X", calib_file, dispersion_file); + for(unsigned int StripNb = 1; StripNb < NbStrips+1; StripNb++){ + double a = 0, b = 0; + if(FindAlphas(((*TH1Map)["MUST2"][Form("hMM%d_STRX_E%d", DetectorNumber, StripNb)]), "X", StripNb,DetectorNumber)){ + FitLinearEnergy(((*TGraphMap)["MUST2"][Form("hMM%d_FITX_E%d", DetectorNumber, StripNb)]),"X",StripNb, DetectorNumber,&a, &b); + (*TGraphMap)["MUST2"][Form("coeffX_a_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,a); + (*TGraphMap)["MUST2"][Form("coeffX_b_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,b); + double dispersion = -b/a ; + (*TH1Map)["MUST2"][Form("Dispersion_T%d",DetectorNumber)]->Fill(dispersion); + *dispersion_file << "MUST2_T" << DetectorNumber << "_Si_X" << StripNb << "_E_Zero_Dispersion " << dispersion << endl ; + } + *calib_file << "MUST2_T" << DetectorNumber << "_Si_X" << StripNb << "_E " << b << " " << a << endl ; + + AlphaMean.clear(); + AlphaSigma.clear(); + } + CloseCalibrationEnergyFiles(calib_file, dispersion_file); + CreateCalibrationEnergyFiles(DetectorNumber,"Y", calib_file, dispersion_file); + for(unsigned int StripNb = 1; StripNb < NbStrips+1; StripNb++){ + double a = 0, b = 0; + if(FindAlphas(((*TH1Map)["MUST2"][Form("hMM%d_STRY_E%d", DetectorNumber, StripNb)]), "Y", StripNb, DetectorNumber)){ + FitLinearEnergy(((*TGraphMap)["MUST2"][Form("hMM%d_FITY_E%d", DetectorNumber, StripNb)]),"Y",StripNb, DetectorNumber, & a,& b); + (*TGraphMap)["MUST2"][Form("coeffY_a_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,a); + (*TGraphMap)["MUST2"][Form("coeffY_b_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,b); + double dispersion = -b/a ; + (*TH1Map)["MUST2"][Form("Dispersion_T%d",DetectorNumber)]->Fill(dispersion); + *dispersion_file << "MUST2_T" << DetectorNumber << "_Si_Y" << StripNb << "_E_Zero_Dispersion " << dispersion << endl ; + } + *calib_file << "MUST2_T" << DetectorNumber << "_Si_Y" << StripNb << "_E " << b << " " << a << endl ; + AlphaMean.clear(); + AlphaSigma.clear(); + } + CloseCalibrationEnergyFiles(calib_file, dispersion_file); +} + +void TMust2Physics::DefineCalibrationSource(){ + // 239Pu + Source_isotope.push_back("$^{239}$Pu"); Source_E.push_back(5.15659 ); Source_Sig.push_back(0.00014); Source_branching_ratio.push_back(70.77) ; + Source_isotope.push_back("$^{239}$Pu"); Source_E.push_back(5.14438 ); Source_Sig.push_back(0.00014); Source_branching_ratio.push_back(17.11) ; + Source_isotope.push_back("$^{239}$Pu"); Source_E.push_back(5.1055 ); Source_Sig.push_back(0.00014); Source_branching_ratio.push_back(11.94) ; + // 241Am + Source_isotope.push_back("$^{241}$Am"); Source_E.push_back(5.48556 ); Source_Sig.push_back(0.00012); Source_branching_ratio.push_back(84.8 ); + Source_isotope.push_back("$^{241}$Am"); Source_E.push_back(5.44280 ); Source_Sig.push_back(0.00012); Source_branching_ratio.push_back(13.1 ); + Source_isotope.push_back("$^{241}$Am"); Source_E.push_back(5.388 ); Source_Sig.push_back(0.00012); Source_branching_ratio.push_back(1.66 ); + // 244Cm + Source_isotope.push_back("$^{244}$Cm"); Source_E.push_back(5.80477 ); Source_Sig.push_back(0.00005); Source_branching_ratio.push_back(76.40) ; + Source_isotope.push_back("$^{244}$Cm"); Source_E.push_back(5.76264 ); Source_Sig.push_back(0.00005); Source_branching_ratio.push_back(23.60) ; + +} + +void TMust2Physics::FitLinearEnergy(TGraphErrors* FitHist, TString side, unsigned int StripNb, unsigned int DetectorNumber, double* a, double* b){ + if(AlphaMean.size() == 3 && AlphaSigma.size() == 3){ + double AlphaSourceEnergy[3]; + double AlphaSourceSigma[3]; + //double AlphaMeanP[3]; + //double AlphaSigmaP[3]; + if(side == "X"){ + for(unsigned int i = 0; i < 3; i++){ + AlphaSourceEnergy[i] = Source_E[3*i]; + AlphaSourceSigma[i] = Source_Sig[3*i]; + //AlphaMeanP[i] = AlphaMean[i]; + //AlphaSigmaP[i] = AlphaSigma[i]; + } + } + else if(side == "Y"){ + for(unsigned int i = 0; i < 3; i++){ + AlphaSourceEnergy[i] = Source_E[6-3*i]; + AlphaSourceSigma[i] = Source_Sig[6-3*i]; + //AlphaMeanP[i] = AlphaMean[i]; + //AlphaSigmaP[i] = AlphaSigma[i]; + } + } + else{ + std::cout << "Check side string formatting" << std::endl; + } + for (Int_t p = 0; p < 3; p++) { + FitHist->SetPoint(p, AlphaMean[p], AlphaSourceEnergy[p]); + FitHist->SetPointError(p, AlphaSigma[p], AlphaSourceSigma[p]); + } + + TF1 *f1 = new TF1("f1","[1]+[0]*x"); + if(side == "X"){ + f1->SetParameter(0,0.007); + f1->SetParameter(1,-60); + } + else if(side == "Y"){ + f1->SetParameter(0,-0.007); + f1->SetParameter(1,60); + } + FitHist->Fit("f1", "Q" ); + + *a = f1 -> GetParameter(0); + *b =f1 -> GetParameter(1); + } +} + +bool TMust2Physics::FindAlphas(TH1F* CalibHist, TString side, unsigned int StripNb, unsigned int DetectorNumber){ + auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map(); + Double_t ResSigma = 5; + Double_t ResSigmaTSpec = 1; + Double_t Threshold = 0.05; + Int_t Npeaks = 3; // maximum number of peaks that can be found + + //////// Peak finder + TSpectrum *s = new TSpectrum(Npeaks,ResSigmaTSpec); + + Int_t Nfound = s->Search(CalibHist, ResSigma, "new", Threshold); + Double_t *Xpeaks = s->GetPositionX(); + + + + // If 3 peaks found + if(Nfound == 3) + { + for(Int_t p=0;p<Nfound;p++) + { + for(Int_t i=0;i<Nfound-1;i++) + { + if(Xpeaks[i]>Xpeaks[i+1]) + { + Float_t varia=Xpeaks[i]; + Xpeaks[i]=Xpeaks[i+1]; + Xpeaks[i+1]=varia; + } + } + } + if((AlphaFitType[DetectorNumber] == "NoSatellite") || (AlphaFitType[DetectorNumber] == "")){ + Float_t linf=0, lsup=0; + for (Int_t p=0;p<Nfound;p++) + { + if(side == "X") + { + //linf = Xpeaks[p]-2; + //lsup = Xpeaks[p]+8; + linf = Xpeaks[p]-5; + lsup = Xpeaks[p]+5; + } + + else if (side == "Y") + { + linf = Xpeaks[p]-5; + lsup = Xpeaks[p]+5; + //linf = Xpeaks[p]-8; + //lsup = Xpeaks[p]+2; + } + TF1 *gauss = new TF1("gauss","gaus",linf,lsup); + CalibHist->Fit(gauss,"RQ"); + AlphaMean.push_back(gauss->GetParameter(1)); + AlphaSigma.push_back(gauss->GetParameter(2)); + (*TH1Map)["MUST2"][Form("SigmaFit_T%d",DetectorNumber)]->Fill(gauss->GetParameter(2)); + } + } + else if(AlphaFitType[DetectorNumber] == "WithSatellite"){ + Float_t linf[3]; + Float_t lsup[3]; + for (Int_t p=0;p<Nfound;p++) + { + if(side == "X") + { + linf[p] = Xpeaks[p]-20; + lsup[p] = Xpeaks[p]+20; + } + + else if (side == "Y") + { + linf[p] = Xpeaks[p]+20; + lsup[p] = Xpeaks[p]-20; + } + } + TF1 *SatellitePu = new TF1("gauss",source_Pu,linf[0],lsup[0], 4); + SatellitePu->SetParameters(150, Xpeaks[0], Xpeaks[0] -1, 0.1); + CalibHist->Fit(SatellitePu,"RQ+"); + AlphaMean.push_back(SatellitePu->GetParameter(1)); + AlphaSigma.push_back(SatellitePu->GetParameter(3)); + (*TH1Map)["MUST2"][Form("SigmaFit_T%d",DetectorNumber)]->Fill(SatellitePu->GetParameter(3)); + + TF1 *SatelliteAm = new TF1("gauss",source_Am,linf[1],lsup[1], 4); + SatelliteAm->SetParameters(150, Xpeaks[1], Xpeaks[1] -1, 0.1); + CalibHist->Fit(SatelliteAm,"RQ+"); + AlphaMean.push_back(SatelliteAm->GetParameter(1)); + AlphaSigma.push_back(SatelliteAm->GetParameter(3)); + (*TH1Map)["MUST2"][Form("SigmaFit_T%d",DetectorNumber)]->Fill(SatelliteAm->GetParameter(3)); + + TF1 *SatelliteCm = new TF1("gauss",source_Cm,linf[2],lsup[2], 4); + SatelliteCm->SetParameters(150, Xpeaks[2], Xpeaks[2] -1, 0.1); + CalibHist->Fit(SatelliteCm,"RQ+"); + AlphaMean.push_back(SatelliteCm->GetParameter(1)); + AlphaSigma.push_back(SatelliteCm->GetParameter(3)); + (*TH1Map)["MUST2"][Form("SigmaFit_T%d",DetectorNumber)]->Fill(SatelliteCm->GetParameter(3)); + } + } + + if(Nfound!=3) + { + BadStrip[side][StripNb] = Nfound; + return false ; + } + + return true ; +} + +Double_t TMust2Physics::source_Pu(Double_t *x, Double_t *par){ + // [0] : constant + // [1] : position peak1 + // [2] : position peak2 + // [3] : sigma + + Double_t arg1 = 0; + Double_t arg2 = 0; + Double_t arg3 = 0; + + if(par[4]!=0) { + arg1 = (x[0]-par[1])/par[3]; + arg2 = (x[0]-par[2])/par[3]; + arg3 = (x[0]-par[1] - (par[1] - par[2])*(5.15659 - 5.1055)/(5.15659 - 5.14438))/par[3]; + } + + else cout << " Attention, sigma est nul !" << endl; + + Double_t gaus1 = par[0]*exp(-0.5*arg1*arg1); + Double_t gaus2 = 15.1/73.8*par[0]*exp(-0.5*arg2*arg2); + Double_t gaus3 = 11.5/73.8*par[0]*exp(-0.5*arg3*arg3); + Double_t fitval = gaus1+gaus2+gaus3; + + return fitval; +} + +Double_t TMust2Physics::source_Am(Double_t *x, Double_t *par) +{ + // [0] : constant + // [1] : position peak1 + // [2] : position peak2 + // [3] : sigma + + Double_t arg1 = 0; + Double_t arg2 = 0; + Double_t arg3 = 0; + + if(par[4]!=0) { + arg1 = (x[0]-par[1])/par[3]; + arg2 = (x[0]-par[2])/par[3]; + arg3 = (x[0]-par[1] - (par[1] - par[2])*(5.48556 - 5.388)/(5.48556 - 5.44280) )/par[3]; + } + + else cout << " Attention, sigma est nul !" << endl; + + Double_t gaus1 = par[0]*exp(-0.5*arg1*arg1); + Double_t gaus2 = 13.0/84.5*par[0]*exp(-0.5*arg2*arg2); + Double_t gaus3 = 1.6/84.5 *par[0]*exp(-0.5*arg3*arg3); + Double_t fitval= gaus1+gaus2+gaus3; + + return fitval; +} + +Double_t TMust2Physics::source_Cm(Double_t *x, Double_t *par) +{ + // [0] : constante + // [1] : position peak1 + // [2] : position peak2 + // [3] : sigma + + Double_t arg1 = 0; + Double_t arg2 = 0; + + if(par[3]!=0) { + arg1 = (x[0]-par[1])/par[3]; + arg2 = (x[0]-par[2])/par[3]; + } + + else cout << " Attention, sigma est nul !" << endl; + + Double_t gaus1 = par[0]*exp(-0.5*arg1*arg1); + Double_t gaus2 = 23.6/76.4*par[0]*exp(-0.5*arg2*arg2); + Double_t fitval= gaus1+gaus2; + + return fitval; +} + +void TMust2Physics::MakeCalibFolders(){ + std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath(); + std::string OutputName = NPOptionManager::getInstance()->GetOutputFile(); + if(OutputName.size() > 5){ + if(OutputName.substr(OutputName.size()-5,OutputName.size()) == ".root"){ + OutputName = OutputName.substr(0,OutputName.size()-5); + } + } + TString test_folder = "test -f "+Path+OutputName; + TString make_folder = "mkdir "+Path+OutputName; + + system(make_folder); + system(make_folder+"/peaks"); + system(make_folder+"/dispersion"); + system(make_folder+"/latex"); + system(make_folder+"/latex/pictures"); +} +void TMust2Physics::CreateCalibrationEnergyFiles(unsigned int DetectorNumber, TString side, ofstream *calib_file, ofstream *dispersion_file){ + std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath(); + std::string OutputName = NPOptionManager::getInstance()->GetOutputFile(); + if(OutputName.size() > 5){ + if(OutputName.substr(OutputName.size()-5,OutputName.size()) == ".root"){ + OutputName = OutputName.substr(0,OutputName.size()-5); + } + } + TString Filename = "Cal_Str_"+side+"_E_MM"+std::to_string(DetectorNumber); +// fname = Path+OutputName + "/peaks/" + str1 + ".peak"; + // peaks_file.open( ( (string)(Path+OutputName+"/peaks/"+Filename+".peak") ).c_str() ); + (*calib_file).open( ( (string)(Path+OutputName+"/"+Filename+".cal") ).c_str() ); + (*dispersion_file).open( ( (string)(Path+OutputName+"/dispersion/"+Filename+".dispersion") ).c_str() ); +} + +void TMust2Physics::CreateCalibrationCSIFiles(unsigned int DetectorNumber, ofstream *calib_file){ + std::string Path = NPOptionManager::getInstance()->GetCalibrationOutputPath(); + std::string OutputName = NPOptionManager::getInstance()->GetOutputFile(); + if(OutputName.size() > 5){ + if(OutputName.substr(OutputName.size()-5,OutputName.size()) == ".root"){ + OutputName = OutputName.substr(0,OutputName.size()-5); + } + } + TString Filename = "CsI_MM"+std::to_string(DetectorNumber); + (*calib_file).open( ( (string)(Path+OutputName+"/"+Filename+".txt") ).c_str() ); +} + +void TMust2Physics::CloseCalibrationEnergyFiles(ofstream *calib_file, ofstream *dispersion_file){ + // peaks_file.close(); + calib_file->close(); + dispersion_file->close(); +} + + + +void TMust2Physics::DoCalibrationTimeF(Int_t DetectorNumber){ + +} + +void TMust2Physics::DoCalibrationCsIF(Int_t DetectorNumber){ +} +/* + auto TH1Map = RootHistogramsCalib::getInstance()->GetTH1Map(); + auto TGraphMap = RootHistogramsCalib::getInstance()->GetTGraphMap(); + unsigned int NbCsI = 16; + ofstream *calib_file = new ofstream; + + + // ExtractCutsAndFillTree(); + CreateCalibrationCSIFiles(DetectorNumber, calib_file); + for(unsigned int StripNb = 1; StripNb < NbStrips+1; StripNb++){ + double a = 0, b = 0; + if(FindAlphas(((*TH1Map)["MUST2"][Form("hMM%d_STRX_E%d", DetectorNumber, StripNb)]), "X", StripNb,DetectorNumber)){ + FitLinearEnergy(((*TGraphMap)["MUST2"][Form("hMM%d_FITX_E%d", DetectorNumber, StripNb)]),"X",StripNb, DetectorNumber,&a, &b); + (*TGraphMap)["MUST2"][Form("coeffX_a_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,a); + (*TGraphMap)["MUST2"][Form("coeffX_b_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,b); + double dispersion = -b/a ; + (*TH1Map)["MUST2"][Form("Dispersion_T%d",DetectorNumber)]->Fill(dispersion); + dispersion_file << "MUST2_T" << DetectorNumber << "_Si_X" << StripNb << "_E_Zero_Dispersion " << dispersion << endl ; + } + calib_file << "MUST2_T" << DetectorNumber << "_Si_X" << StripNb << "_E " << b << " " << a << endl ; + + AlphaMean.clear(); + AlphaSigma.clear(); + } + CloseCalibrationEnergyFiles(); + CreateCalibrationEnergyFiles(DetectorNumber,"Y"); + for(unsigned int StripNb = 1; StripNb < NbStrips+1; StripNb++){ + double a = 0, b = 0; + if(FindAlphas(((*TH1Map)["MUST2"][Form("hMM%d_STRY_E%d", DetectorNumber, StripNb)]), "Y", StripNb, DetectorNumber)){ + FitLinearEnergy(((*TGraphMap)["MUST2"][Form("hMM%d_FITY_E%d", DetectorNumber, StripNb)]),"Y",StripNb, DetectorNumber, & a,& b); + (*TGraphMap)["MUST2"][Form("coeffY_a_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,a); + (*TGraphMap)["MUST2"][Form("coeffY_b_T%d",DetectorNumber)]->SetPoint(StripNb,StripNb,b); + double dispersion = -b/a ; + (*TH1Map)["MUST2"][Form("Dispersion_T%d",DetectorNumber)]->Fill(dispersion); + dispersion_file << "MUST2_T" << DetectorNumber << "_Si_Y" << StripNb << "_E_Zero_Dispersion " << dispersion << endl ; + } + calib_file << "MUST2_T" << DetectorNumber << "_Si_Y" << StripNb << "_E " << b << " " << a << endl ; + AlphaMean.clear(); + AlphaSigma.clear(); + } + CloseCalibrationEnergyFiles(); + +}*/ + /////////////////////////////////////////////////////////////////////////// namespace MUST2_LOCAL { // DSSD diff --git a/NPLib/Detectors/MUST2/TMust2Physics.h b/NPLib/Detectors/MUST2/TMust2Physics.h index a9791aeab1c5dc061653afce1031ebd85454a49d..57575a21163efed5e7c6884d551c5c16989bc99f 100644 --- a/NPLib/Detectors/MUST2/TMust2Physics.h +++ b/NPLib/Detectors/MUST2/TMust2Physics.h @@ -25,6 +25,7 @@ // STL #include <map> #include <vector> +#include <stdlib.h> // NPL #include "NPCalibrationManager.h" #include "NPInputParser.h" @@ -35,6 +36,7 @@ #include "TMust2PhysicsReader.h" #include "NPDetectorFactory.h" // ROOT +#include "TGraphErrors.h" #include "TH1.h" #include "TObject.h" #include "TVector2.h" @@ -104,6 +106,8 @@ public: // Innherited from VDetector Class // Read stream at ConfigFile to pick-up parameters of detector // (Position,...) using Token void ReadConfiguration(NPL::InputParser parser); + + void ReadDoCalibration(NPL::InputParser parser); // Add Parameter to the CalibrationManger void AddParameterToCalibrationManager(); @@ -124,6 +128,60 @@ public: // Innherited from VDetector Class // address void InitializeRootOutput(); + void DoCalibrationCSIPreTreat(); + + void InitializeRootHistogramsCalib();//! + + void InitializeRootHistogramsEnergyF(Int_t DetectorNumber);//! + + void InitializeRootHistogramsTimeF(Int_t DetectorNumber){};//! + + void InitializeRootHistogramsCSIF(Int_t DetectorNumber);//! + + void FillHistogramsCalib();//! + + void FillHistogramsCalibEnergyF();//! + + void FillHistogramsCalibTimeF(){};//! + + void FillHistogramsCalibCSIF();//! + + void DoCalibration();//! + + void DoCalibrationEnergyF(Int_t DetectorNumber);//! + + void DoCalibrationTimeF(Int_t DetectorNumber);//! + + void DoCalibrationCsIF(Int_t DetectorNumber);//! + + void MakeCalibFolders();//! + + void CreateCalibrationEnergyFiles(unsigned int DetectorNumber, TString side, ofstream *calib_file, ofstream *dispersion_file);//! + + void CreateCalibrationCSIFiles(unsigned int DetectorNumber, ofstream *calib_file);//! + + void CloseCalibrationCSIFiles(ofstream *calib_file){};//! + + void CloseCalibrationEnergyFiles(ofstream *calib_file, ofstream *dispersion_file);//! + + bool FindAlphas(TH1F* CalibHist, TString side, unsigned int StripNb, unsigned int DetectorNumber);//! + + void FitLinearEnergy(TGraphErrors* FitHist, TString side, unsigned int StripNb,unsigned int DetectorNumber, double* a, double* b);//! + + void WriteHistogramsCalib();//! + + void WriteHistogramsEnergyF();//! + + void WriteHistogramsCSIF();//! + + void WriteHistogramsTimeF(){};//! + + static Double_t source_Pu(Double_t *x, Double_t *par);//! + static Double_t source_Am(Double_t *x, Double_t *par);//! + static Double_t source_Cm(Double_t *x, Double_t *par);//! + + void DefineCalibrationSource();//! + // This method is called at each event read from the Input Tree. Aime is to // build treat Raw dat in order to extract physical parameter. void BuildPhysicalEvent(); @@ -316,6 +374,35 @@ private: map<int, bool> m_CsIPresent; //! map<int, bool> m_SiLiPresent; //! +private: + map<int,bool> DoCalibrationEnergy;//! + map<int,bool> DoCalibrationTime;//! + map<int,bool> DoCalibrationCsI;//! + bool IsCalibCSI = false;//! + bool IsCalibEnergy = false;//! + std::map<TString,std::map<unsigned int,unsigned int>> BadStrip;//! + std::vector<double> AlphaSigma;//! + std::vector<double> AlphaMean;//! + std::vector<TString> Source_isotope;//! + std::vector<double> Source_E;//! + std::vector<double> Source_Sig;//! + std::vector<double> Source_branching_ratio;//! + // ofstream peaks_file, calib_file, dispersion_file , calib_online_file, latex_file;//! + + + ///////// Calib parameters for Si detectors + map<int,double> EnergyXThreshold;//! + map<int,double> EnergyYThreshold;//! + map<int,std::string> AlphaFitType;//! + + ///////// Calib parameters for CsI detectors + map<int,double> CSIEnergyXThreshold;//! + map<int,double> CSIEnergyYThreshold;//! + map<int,double> CSIEThreshold;//! + TTreeReaderValue<unsigned short>* GATCONFMASTER_;//! + // map<int,std::string> CalibFile;//! + + private: // Spectra Class TMust2Spectra* m_Spectra; //! diff --git a/NPLib/Detectors/SEASON/CMakeLists.txt b/NPLib/Detectors/SEASON/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a78a099ca42d23602883af9c38683f003decc63 --- /dev/null +++ b/NPLib/Detectors/SEASON/CMakeLists.txt @@ -0,0 +1,6 @@ +add_custom_command(OUTPUT TSEASONPhysicsDict.cxx COMMAND ../../scripts/build_dict.sh TSEASONPhysics.h TSEASONPhysicsDict.cxx TSEASONPhysics.rootmap libNPSEASON.dylib DEPENDS TSEASONPhysics.h) +add_custom_command(OUTPUT TSEASONDataDict.cxx COMMAND ../../scripts/build_dict.sh TSEASONData.h TSEASONDataDict.cxx TSEASONData.rootmap libNPSEASON.dylib DEPENDS TSEASONData.h) +add_library(NPSEASON SHARED TSEASONSpectra.cxx TSEASONData.cxx TSEASONPhysics.cxx TSEASONDataDict.cxx TSEASONPhysicsDict.cxx ) +target_link_libraries(NPSEASON ${ROOT_LIBRARIES} NPCore) +install(FILES TSEASONData.h TSEASONPhysics.h TSEASONSpectra.h DESTINATION ${CMAKE_INCLUDE_OUTPUT_DIRECTORY}) + diff --git a/NPLib/Detectors/SEASON/TSEASONData.cxx b/NPLib/Detectors/SEASON/TSEASONData.cxx new file mode 100644 index 0000000000000000000000000000000000000000..b28fb9dbef0f2e1824d8885ba1f2dd342dbb7874 --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONData.cxx @@ -0,0 +1,141 @@ +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class hold SEASON Raw data * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + * * + *****************************************************************************/ + #include "TSEASONData.h" + + #include <iostream> + #include <fstream> + #include <sstream> + #include <string> + using namespace std; + + ClassImp(TSEASONData) + + + ////////////////////////////////////////////////////////////////////// + TSEASONData::TSEASONData() { + } + + + + ////////////////////////////////////////////////////////////////////// + TSEASONData::~TSEASONData() { + } + + + + ////////////////////////////////////////////////////////////////////// + void TSEASONData::Clear() { + // X Energy + fSEASONX_E_DetectorNbr.clear(); + fSEASONX_E_StripNbr.clear(); + fSEASONX_Energy.clear(); + + // X Time + fSEASONX_T_DetectorNbr.clear(); + fSEASONX_T_StripNbr.clear(); + fSEASONX_Time.clear(); + + // X Detected Particle ID (ID of primary vertex particle) + fSEASONX_ParticleID.clear(); + + // Y Energy + fSEASONY_E_DetectorNbr.clear(); + fSEASONY_E_StripNbr.clear(); + fSEASONY_Energy.clear(); + + // Y Time + fSEASONY_T_DetectorNbr.clear(); + fSEASONY_T_StripNbr.clear(); + fSEASONY_Time.clear(); + + // Y Detected Particle ID (ID of primary vertex particle) + fSEASONY_ParticleID.clear(); + + // Energy + fSEASON_E_DetectorNbr.clear(); + fSEASON_E_StripNbrX.clear(); + fSEASON_E_StripNbrY.clear(); + fSEASON_Energy.clear(); + + // Time + fSEASON_T_DetectorNbr.clear(); + fSEASON_T_StripNbrX.clear(); + fSEASON_T_StripNbrY.clear(); + fSEASON_Time.clear(); + } + + + + ////////////////////////////////////////////////////////////////////// + void TSEASONData::Dump() const { + // This method is very useful for debuging and worth the dev. + cout << "XXXXXXXXXXXXXXXXXXXXXXXX New Event [TSEASONData::Dump()] XXXXXXXXXXXXXXXXX" << endl; + + // X Energy + size_t mysizeX = fSEASONX_E_DetectorNbr.size(); + cout << "SEASONX_E_Mult: " << mysizeX << endl; + + for (size_t i = 0 ; i < mysizeX ; i++){ + cout << "XDetNbr: " << fSEASONX_E_DetectorNbr[i] + << " XStrip: " << fSEASONX_E_StripNbr[i] + << " XEnergy: " << fSEASONX_Energy[i] + << " XPartID: " << fSEASONX_ParticleID[i] + << endl; + } + + // X Time + mysizeX = fSEASONX_T_DetectorNbr.size(); + cout << "SEASONX_T_Mult: " << mysizeX << endl; + + for (size_t i = 0 ; i < mysizeX ; i++){ + cout << "XDetNbr: " << fSEASONX_T_DetectorNbr[i] + << " XStrip: " << fSEASONX_T_StripNbr[i] + << " Time: " << fSEASONX_Time[i] + << " XPartID: " << fSEASONX_ParticleID[i] + << endl; + } + + // Y Energy + size_t mysizeY = fSEASONY_E_DetectorNbr.size(); + cout << "SEASONY_E_Mult: " << mysizeY << endl; + + for (size_t i = 0 ; i < mysizeY ; i++){ + cout << "YDetNbr: " << fSEASONY_E_DetectorNbr[i] + << " YStrip: " << fSEASONY_E_StripNbr[i] + << " YEnergy: " << fSEASONY_Energy[i] + << " YPartID: " << fSEASONY_ParticleID[i] + << endl; + } + + // Y Time + mysizeY = fSEASONY_T_DetectorNbr.size(); + cout << "SEASONY_T_Mult: " << mysizeY << endl; + + for (size_t i = 0 ; i < mysizeY ; i++){ + cout << "YDetNbr: " << fSEASONY_T_DetectorNbr[i] + << " YStrip: " << fSEASONY_T_StripNbr[i] + << " Time: " << fSEASONY_Time[i] + << " YPartID: " << fSEASONY_ParticleID[i] + << endl; + } + } diff --git a/NPLib/Detectors/SEASON/TSEASONData.h b/NPLib/Detectors/SEASON/TSEASONData.h new file mode 100644 index 0000000000000000000000000000000000000000..a7bdb02355fa34097a826f19f311a412a75c5665 --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONData.h @@ -0,0 +1,336 @@ +#ifndef __SEASONDATA__ +#define __SEASONDATA__ +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class hold SEASON Raw data * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + * * + *****************************************************************************/ + + // STL + #include <vector> + using namespace std; + + // ROOT + #include "TObject.h" + + class TSEASONData : public TObject { + ////////////////////////////////////////////////////////////// + // data members are hold into vectors in order + // to allow multiplicity treatment + private: + // DSSD X + + // Energy + vector<UShort_t> fSEASONX_E_DetectorNbr; + vector<UShort_t> fSEASONX_E_StripNbr; + vector<Double_t> fSEASONX_Energy; + + // Time + vector<UShort_t> fSEASONX_T_DetectorNbr; + vector<UShort_t> fSEASONX_T_StripNbr; + vector<Double_t> fSEASONX_Time; + + // Detected Particle ID (ID of primary vertex particle) + vector<UInt_t> fSEASONX_ParticleID; + + // DSSD Y + + // Energy + vector<UShort_t> fSEASONY_E_DetectorNbr; + vector<UShort_t> fSEASONY_E_StripNbr; + vector<Double_t> fSEASONY_Energy; + + // Time + vector<UShort_t> fSEASONY_T_DetectorNbr; + vector<UShort_t> fSEASONY_T_StripNbr; + vector<Double_t> fSEASONY_Time; + + // Detected Particle ID (ID of primary vertex particle) + vector<UInt_t> fSEASONY_ParticleID; + + // DSSD Final + + // Energy + vector<UShort_t> fSEASON_E_DetectorNbr; + vector<UShort_t> fSEASON_E_StripNbrX; + vector<UShort_t> fSEASON_E_StripNbrY; + vector<Double_t> fSEASON_Energy; + + // Time + vector<UShort_t> fSEASON_T_DetectorNbr; + vector<UShort_t> fSEASON_T_StripNbrX; + vector<UShort_t> fSEASON_T_StripNbrY; + vector<Double_t> fSEASON_Time; + + + + ////////////////////////////////////////////////////////////// + // Constructor and destructor + public: + TSEASONData(); + ~TSEASONData(); + + + ////////////////////////////////////////////////////////////// + // Inherited from TObject and overriden to avoid warnings + public: + void Clear(); + void Clear(const Option_t*) {}; + void Dump() const; + + + ////////////////////////////////////////////////////////////// + // Getters and Setters + // Prefer inline declaration to avoid unnecessary called of + // frequently used methods + // add //! to avoid ROOT creating dictionnary for the methods + public: + ////////////////////// SETTERS //////////////////////// + // X Energy + inline void SetXEnergy(const UShort_t& DetNbr,const UShort_t& StripNbr,const Double_t& Energy){ + fSEASONX_E_DetectorNbr.push_back(DetNbr); + fSEASONX_E_StripNbr.push_back(StripNbr); + fSEASONX_Energy.push_back(Energy); + };//! + + // X Time + inline void SetXTime(const UShort_t& DetNbr,const UShort_t& StripNbr, const Double_t& Time) { + fSEASONX_T_DetectorNbr.push_back(DetNbr); + fSEASONX_T_StripNbr.push_back(StripNbr); + fSEASONX_Time.push_back(Time); + };//! + + // X Detected Particle ID + inline void SetXParticleID(const UInt_t& PartID){ + fSEASONX_ParticleID.push_back(PartID); + };//! + + // Add Energy and time to the last detected event + inline void AddToLastX(const Double_t& Energy,const Double_t& Time){ + fSEASONX_Energy[fSEASONX_Energy.size()-1] += Energy; + fSEASONX_Time[fSEASONX_Time.size()-1] += Time; + };//! + + + // Y Energy + inline void SetYEnergy(const UShort_t& DetNbr,const UShort_t& StripNbr,const Double_t& Energy){ + fSEASONY_E_DetectorNbr.push_back(DetNbr); + fSEASONY_E_StripNbr.push_back(StripNbr); + fSEASONY_Energy.push_back(Energy); + };//! + + // Y Time + inline void SetYTime(const UShort_t& DetNbr,const UShort_t& StripNbr, const Double_t& Time) { + fSEASONY_T_DetectorNbr.push_back(DetNbr); + fSEASONY_T_StripNbr.push_back(StripNbr); + fSEASONY_Time.push_back(Time); + };//! + + // Y Detected Particle ID + inline void SetYParticleID(const UInt_t& PartID){ + fSEASONY_ParticleID.push_back(PartID); + };//! + + // Add Energy and time to the last detected event + inline void AddToLastY(const Double_t& Energy,const Double_t& Time){ + fSEASONY_Energy[fSEASONY_Energy.size()-1] += Energy; + fSEASONY_Time[fSEASONY_Time.size()-1] += Time; + };//! + + // Energy + inline void SetEnergy(const UShort_t& DetNbr,const UShort_t& StripNbrX,const UShort_t& StripNbrY,const Double_t& Energy){ + fSEASON_E_DetectorNbr.push_back(DetNbr); + fSEASON_E_StripNbrX.push_back(StripNbrX); + fSEASON_E_StripNbrY.push_back(StripNbrY); + fSEASON_Energy.push_back(Energy); + };//! + + // Time + inline void SetTime(const UShort_t& DetNbr,const UShort_t& StripNbrX,const UShort_t& StripNbrY, const Double_t& Time) { + fSEASON_T_DetectorNbr.push_back(DetNbr); + fSEASON_T_StripNbrX.push_back(StripNbrX); + fSEASON_T_StripNbrY.push_back(StripNbrY); + fSEASON_Time.push_back(Time); + };//! + + + ////////////////////// GETTERS //////////////////////// + // X Energy + inline UShort_t GetXMultEnergy() const + {return fSEASONX_E_DetectorNbr.size();} + + inline UShort_t GetXE_DetectorNbr(const unsigned int &i) const + {return fSEASONX_E_DetectorNbr[i];}//! + + inline vector<UShort_t> VGetXE_DetectorNbr() const + {return fSEASONX_E_DetectorNbr;}//! + + inline UShort_t GetXE_StripNbr(const unsigned int &i) const + {return fSEASONX_E_StripNbr[i];}//! + + inline vector<UShort_t> VGetXE_StripNbr() const + {return fSEASONX_E_StripNbr;}//! + + inline Double_t GetX_Energy(const unsigned int &i) const + {return fSEASONX_Energy[i];}//! + + inline vector<Double_t> VGetX_Energy() const + {return fSEASONX_Energy;}//! + + // X Time + + inline UShort_t GetXMultTime() const + {return fSEASONX_T_DetectorNbr.size();} + + inline UShort_t GetXT_DetectorNbr(const unsigned int &i) const + {return fSEASONX_T_DetectorNbr[i];}//! + + inline vector<UShort_t> VGetXT_DetectorNbr() const + {return fSEASONX_T_DetectorNbr;}//! + + inline UShort_t GetXT_StripNbr(const unsigned int &i) const + {return fSEASONX_T_StripNbr[i];}//! + + inline vector<UShort_t> VGetXT_StripNbr() const + {return fSEASONX_T_StripNbr;}//! + + inline Double_t GetX_Time(const unsigned int &i) const + {return fSEASONX_Time[i];}//! + + inline vector<Double_t> VGetX_Time() const + {return fSEASONX_Time;}//! + + // X Particle ID + inline UInt_t GetX_ParticleID(const unsigned int &i) const + {return fSEASONX_ParticleID[i];}//! + + // Y Energy + inline UShort_t GetYMultEnergy() const + {return fSEASONY_E_DetectorNbr.size();} + + inline UShort_t GetYE_DetectorNbr(const unsigned int &i) const + {return fSEASONY_E_DetectorNbr[i];}//! + + inline vector<UShort_t> VGetYE_DetectorNbr() const + {return fSEASONY_E_DetectorNbr;}//! + + inline UShort_t GetYE_StripNbr(const unsigned int &i) const + {return fSEASONY_E_StripNbr[i];}//! + + inline vector<UShort_t> VGetYE_StripNbr() const + {return fSEASONY_E_StripNbr;}//! + + inline Double_t GetY_Energy(const unsigned int &i) const + {return fSEASONY_Energy[i];}//! + + inline vector<Double_t> VGetY_Energy() const + {return fSEASONY_Energy;}//! + + // Y Time + + inline UShort_t GetYMultTime() const + {return fSEASONY_T_DetectorNbr.size();} + + inline UShort_t GetYT_DetectorNbr(const unsigned int &i) const + {return fSEASONY_T_DetectorNbr[i];}//! + + inline vector<UShort_t> VGetYT_DetectorNbr() const + {return fSEASONY_T_DetectorNbr;}//! + + inline UShort_t GetYT_StripNbr(const unsigned int &i) const + {return fSEASONY_T_StripNbr[i];}//! + + inline vector<UShort_t> VGetYT_StripNbr() const + {return fSEASONY_T_StripNbr;}//! + + inline Double_t GetY_Time(const unsigned int &i) const + {return fSEASONY_Time[i];}//! + + inline vector<Double_t> VGetY_Time() const + {return fSEASONY_Time;}//! + + // Y Particle ID + inline UInt_t GetY_ParticleID(const unsigned int &i) const + {return fSEASONY_ParticleID[i];}//! + + // Energy + inline UShort_t GetMultEnergy() const + {return fSEASON_E_DetectorNbr.size();} + + inline UShort_t GetE_DetectorNbr(const unsigned int &i) const + {return fSEASON_E_DetectorNbr[i];}//! + + inline vector<UShort_t> VGetE_DetectorNbr() const + {return fSEASON_E_DetectorNbr;}//! + + inline UShort_t GetE_StripNbrX(const unsigned int &i) const + {return fSEASON_E_StripNbrX[i];}//! + + inline vector<UShort_t> VGetE_StripNbrX() const + {return fSEASON_E_StripNbrX;}//! + + inline UShort_t GetE_StripNbrY(const unsigned int &i) const + {return fSEASON_E_StripNbrY[i];}// + + inline vector<UShort_t> VGetE_StripNbrY() const + {return fSEASON_E_StripNbrY;}//! + + inline Double_t Get_Energy(const unsigned int &i) const + {return fSEASON_Energy[i];}//! + + inline vector<Double_t> VGet_Energy() const + {return fSEASON_Energy;}//! + + // Time + + inline UShort_t GetMultTime() const + {return fSEASON_T_DetectorNbr.size();} + + inline UShort_t GetT_DetectorNbr(const unsigned int &i) const + {return fSEASON_T_DetectorNbr[i];}//! + + inline vector<UShort_t> VGetT_DetectorNbr() const + {return fSEASON_T_DetectorNbr;}//! + + inline UShort_t GetT_StripNbrX(const unsigned int &i) const + {return fSEASON_T_StripNbrX[i];}//! + + inline vector<UShort_t> VGetT_StripNbrX() const + {return fSEASON_T_StripNbrX;}//! + + inline UShort_t GetT_StripNbrY(const unsigned int &i) const + {return fSEASON_T_StripNbrY[i];}// + + inline vector<UShort_t> VGetT_StripNbrY() const + {return fSEASON_T_StripNbrY;}//! + + inline Double_t Get_Time(const unsigned int &i) const + {return fSEASON_Time[i];}//! + + inline vector<Double_t> VGet_Time() const + {return fSEASON_Time;}//! + + + ////////////////////////////////////////////////////////////// + // Required for ROOT dictionnary + ClassDef(TSEASONData,1) // SEASONData structure + }; + + #endif diff --git a/NPLib/Detectors/SEASON/TSEASONPhysics.cxx b/NPLib/Detectors/SEASON/TSEASONPhysics.cxx new file mode 100644 index 0000000000000000000000000000000000000000..7c432dc1e42dc5bd834f3662ad805545ae94dd68 --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONPhysics.cxx @@ -0,0 +1,510 @@ +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class hold SEASON Treated data * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + * * + *****************************************************************************/ + + #include "TSEASONPhysics.h" + + // STL + #include <sstream> + #include <iostream> + #include <cmath> + #include <stdlib.h> + #include <limits> + using namespace std; + + // NPL + #include "RootInput.h" + #include "RootOutput.h" + #include "NPDetectorFactory.h" + #include "NPOptionManager.h" + + // ROOT + #include "TChain.h" + + ClassImp(TSEASONPhysics) + + + /////////////////////////////////////////////////////////////////////////// + TSEASONPhysics::TSEASONPhysics() + : m_EventData(new TSEASONData), + m_PreTreatedData(new TSEASONData), + m_EventPhysics(this), + m_Spectra(0), + m_E_RAW_Threshold(0), // adc channels + m_E_Threshold(0), // MeV + m_NumberOfDetectors(0) { + } + + /////////////////////////////////////////////////////////////////////////// + /// A usefull method to bundle all operation to add a detector + void TSEASONPhysics::AddDetector(TVector3 X1_Y1, + TVector3 X1_YMax, + TVector3 XMax_Y1, + TVector3 XMax_YMax, + int NumberOfStripsX, + int NumberOfStripsY){ + // In That simple case nothing is done + // Typically for more complex detector one would calculate the relevant + // positions (stripped silicon) or angles (gamma array) + m_NumberOfDetectors++; + m_NumberOfStripsX = NumberOfStripsX; + m_NumberOfStripsY = NumberOfStripsY; + // Vector U on Telescope Face (parallele to 0X axis) (parallele to X Strip) (NB: remember that Y strip are allong X axis) + TVector3 U = XMax_Y1 - X1_Y1 ; + double FaceX = U.Mag(); + double Ushift = (U.Mag()-FaceX)/2.; + U=U.Unit(); + + // Vector V on Telescope Face (parallele to 0Y axis) (parallele to Y Strip) + TVector3 V = X1_YMax - X1_Y1 ; + double FaceY = V.Mag(); + double Vshift = (V.Mag()-FaceY)/2.; + V=V.Unit(); + + // Position Vector of Strip Center + TVector3 StripCenter = TVector3(0,0,0); + // Position Vector of X=1 Y=1 Strip + TVector3 Strip_1_1; + + // Geometry Parameter + double StripPitchX = FaceX/NumberOfStripsX ; //mm + double StripPitchY = FaceY/NumberOfStripsY ; //mm + + // buffer object to fill Position Array + vector<double> lineX ; vector<double> lineY ; vector<double> lineZ ; + + vector< vector < double > > OneTelescopeStripPositionX; + vector< vector < double > > OneTelescopeStripPositionY; + vector< vector < double > > OneTelescopeStripPositionZ; + + // Moving StripCEnter to 1.1 corner + + Strip_1_1 = X1_Y1 + U*(StripPitchX/2.) + V*(StripPitchY/2.); + Strip_1_1 += U*Ushift+V*Vshift; + + for(int i = 0 ; i < NumberOfStripsX ; ++i){ + lineX.clear(); + lineY.clear(); + lineZ.clear(); + + for( int j = 0 ; j < NumberOfStripsY ; ++j){ + StripCenter = Strip_1_1 + StripPitchX*i*U + StripPitchY*i*V; + lineX.push_back( StripCenter.X()); + lineY.push_back( StripCenter.Y()); + lineZ.push_back( StripCenter.Z()); + } + + OneTelescopeStripPositionX.push_back(lineX); + OneTelescopeStripPositionY.push_back(lineY); + OneTelescopeStripPositionZ.push_back(lineZ); + + } + + m_StripPositionX.push_back(OneTelescopeStripPositionX); + m_StripPositionY.push_back(OneTelescopeStripPositionY); + m_StripPositionZ.push_back(OneTelescopeStripPositionZ); + + } + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::BuildSimplePhysicalEvent() { + BuildPhysicalEvent(); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::BuildPhysicalEvent() { + // apply thresholds and calibration + PreTreat(); + + // match energy and time together + unsigned int mysizeXE = m_PreTreatedData->GetXMultEnergy(); + unsigned int mysizeYE = m_PreTreatedData->GetYMultEnergy(); + unsigned int mysizeXT = m_PreTreatedData->GetXMultTime(); + unsigned int mysizeYT = m_PreTreatedData->GetYMultTime(); + unsigned int mysizeE = m_PreTreatedData->GetMultEnergy(); + unsigned int mysizeT = m_PreTreatedData->GetMultTime(); + + for (UShort_t e = 0; e < mysizeXE ; e++) { + for (UShort_t t = 0; t < mysizeXT ; t++) { + if (m_PreTreatedData->GetXE_DetectorNbr(e) == m_PreTreatedData->GetXT_DetectorNbr(t) + && m_PreTreatedData->GetXE_StripNbr(e) == m_PreTreatedData->GetXT_StripNbr(t)) { + DetectorNumberX.push_back(m_PreTreatedData->GetXE_DetectorNbr(e)); + StripNumberX.push_back(m_PreTreatedData->GetXE_StripNbr(e)); + EnergyX.push_back(m_PreTreatedData->GetX_Energy(e)); + TimeX.push_back(m_PreTreatedData->GetX_Time(t)); + } + } + } + for (UShort_t e = 0; e < mysizeYE ; e++) { + for (UShort_t t = 0; t < mysizeYT ; t++) { + if (m_PreTreatedData->GetYE_DetectorNbr(e) == m_PreTreatedData->GetYT_DetectorNbr(t) + && m_PreTreatedData->GetYE_StripNbr(e) == m_PreTreatedData->GetYT_StripNbr(t)) { + DetectorNumberY.push_back(m_PreTreatedData->GetYE_DetectorNbr(e)); + StripNumberY.push_back(m_PreTreatedData->GetYE_StripNbr(e)); + EnergyY.push_back(m_PreTreatedData->GetY_Energy(e)); + TimeY.push_back(m_PreTreatedData->GetY_Time(t)); + } + } + } + + for (UShort_t e = 0; e < mysizeE ; e++) { + for (UShort_t t = 0; t < mysizeT ; t++) { + if (m_PreTreatedData->GetE_DetectorNbr(e) == m_PreTreatedData->GetT_DetectorNbr(t) + && m_PreTreatedData->GetE_StripNbrX(e) == m_PreTreatedData->GetT_StripNbrX(t) + && m_PreTreatedData->GetE_StripNbrY(e) == m_PreTreatedData->GetT_StripNbrY(t)) { + DetectorNumber.push_back(m_PreTreatedData->GetE_DetectorNbr(e)); + StripX.push_back(m_PreTreatedData->GetE_StripNbrX(e)); + StripY.push_back(m_PreTreatedData->GetE_StripNbrY(e)); + Energy.push_back(m_PreTreatedData->Get_Energy(e)); + Time.push_back(m_PreTreatedData->Get_Time(t)); + } + } + } + //DetectorNumber = DetectorNumberX; + } + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::PreTreat() { + // This method typically applies thresholds and calibrations + // Might test for disabled channels for more complex detector + + // clear pre-treated object + ClearPreTreatedData(); + unsigned int mysizeX = m_EventData->GetXMultEnergy(); + unsigned int mysizeY = m_EventData->GetYMultEnergy(); + + // instantiate CalibrationManager + static CalibrationManager* Cal = CalibrationManager::getInstance(); + + if(mysizeX == mysizeY){ + unsigned int mysize = mysizeX; + // Energy + for (UShort_t i = 0; i < mysize ; ++i) { + if(m_EventData->GetXE_DetectorNbr(i) == m_EventData->GetYE_DetectorNbr(i)){ + if (m_EventData->GetX_Energy(i) > m_E_RAW_Threshold) { + double x = (m_EventData->GetXE_StripNbr(i) - 16.5)*2, y = (m_EventData->GetYE_StripNbr(i) - 16.5)*2; + //int dist = std::round(TMath::Sqrt(x*x+y*y+4)-2); + int dist = std::round(TMath::Sqrt(y*y+4)-2); + //if(dist > 38) dist = 38; + string name = "SEASON/D"; + name += NPL::itoa(m_EventData->GetXE_DetectorNbr(i)); + name += "_DIST"; + name += NPL::itoa(dist); + name += "_ENERGY"; + string namestrip = "SEASON/D"; + namestrip += NPL::itoa(m_EventData->GetXE_DetectorNbr(i)); + namestrip += "_STRIPX"; + namestrip += NPL::itoa(m_EventData->GetXE_StripNbr(i)); + namestrip += "_ENERGY"; + //cout << name << endl; + Double_t Estrip = Cal->ApplyCalibration(namestrip,m_EventData->GetX_Energy(i)); + Double_t E = Cal->ApplyCalibration(name,Estrip); + if (E > m_XE_Threshold) { + m_PreTreatedData->SetEnergy(m_EventData->GetXE_DetectorNbr(i),m_EventData->GetXE_StripNbr(i),m_EventData->GetYE_StripNbr(i),E); + } + } + } + } + + // Time + for (UShort_t i = 0; i < mysize; ++i) { + if(m_EventData->GetXT_DetectorNbr(i) == m_EventData->GetYT_DetectorNbr(i)){ + Double_t T= Cal->ApplyCalibration("SEASON/D"+NPL::itoa(m_EventData->GetXT_DetectorNbr(i))+"_STRIPX"+NPL::itoa(m_EventData->GetXT_StripNbr(i))+"_STRIPY"+NPL::itoa(m_EventData->GetYT_StripNbr(i))+"_Time",m_EventData->GetX_Time(i)); + m_PreTreatedData->SetTime(m_EventData->GetXT_DetectorNbr(i),m_EventData->GetXT_StripNbr(i),m_EventData->GetYT_StripNbr(i),T); + } + } + } + + // X Energy + for (UShort_t i = 0; i < mysizeX ; ++i) { + if (m_EventData->GetX_Energy(i) > m_E_RAW_Threshold) { + Double_t EX = Cal->ApplyCalibration("SEASON/D"+NPL::itoa(m_EventData->GetXE_DetectorNbr(i))+"_STRIP"+NPL::itoa(m_EventData->GetXE_StripNbr(i))+"_Energy",m_EventData->GetX_Energy(i)); + if (EX > m_XE_Threshold) { + m_PreTreatedData->SetXEnergy(m_EventData->GetXE_DetectorNbr(i),m_EventData->GetXE_StripNbr(i) ,EX); + } + } + } + + // X Time + for (UShort_t i = 0; i < mysizeX; ++i) { + Double_t TX= Cal->ApplyCalibration("SEASON/D"+NPL::itoa(m_EventData->GetXT_DetectorNbr(i))+"_Strip"+NPL::itoa(m_EventData->GetXT_StripNbr(i))+"_Time",m_EventData->GetX_Time(i)); + m_PreTreatedData->SetXTime(m_EventData->GetXT_DetectorNbr(i),m_EventData->GetXT_StripNbr(i) ,TX); + } + + // Y Energy + for (UShort_t i = 0; i < mysizeY; ++i) { + if (m_EventData->GetY_Energy(i) > m_E_RAW_Threshold) { + Double_t EY = Cal->ApplyCalibration("SEASON/D"+NPL::itoa(m_EventData->GetYE_DetectorNbr(i))+"_STRIP"+NPL::itoa(m_EventData->GetYE_StripNbr(i))+"_Energy",m_EventData->GetY_Energy(i)); + if (EY > m_YE_Threshold) { + m_PreTreatedData->SetYEnergy(m_EventData->GetYE_DetectorNbr(i),m_EventData->GetYE_StripNbr(i) ,EY); + } + } + } + + // Y Time + for (UShort_t i = 0; i < mysizeY; ++i) { + Double_t TY= Cal->ApplyCalibration("SEASON/D"+NPL::itoa(m_EventData->GetYT_DetectorNbr(i))+"_Strip"+NPL::itoa(m_EventData->GetYT_StripNbr(i))+"_Time",m_EventData->GetY_Time(i)); + m_PreTreatedData->SetYTime(m_EventData->GetYT_DetectorNbr(i),m_EventData->GetYT_StripNbr(i) ,TY); + } + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::ReadAnalysisConfig() { + bool ReadingStatus = false; + + // path to file + string FileName = "./configs/ConfigSEASON.dat"; + + // open analysis config file + ifstream AnalysisConfigFile; + AnalysisConfigFile.open(FileName.c_str()); + + if (!AnalysisConfigFile.is_open()) { + cout << " No ConfigSEASON.dat found: Default parameter loaded for Analayis " << FileName << endl; + return; + } + cout << " Loading user parameter for Analysis from ConfigSEASON.dat " << endl; + + // Save it in a TAsciiFile + TAsciiFile* asciiConfig = RootOutput::getInstance()->GetAsciiFileAnalysisConfig(); + asciiConfig->AppendLine("%%% ConfigSEASON.dat %%%"); + asciiConfig->Append(FileName.c_str()); + asciiConfig->AppendLine(""); + // read analysis config file + string LineBuffer,DataBuffer,whatToDo; + while (!AnalysisConfigFile.eof()) { + // Pick-up next line + getline(AnalysisConfigFile, LineBuffer); + + // search for "header" + string name = "ConfigSEASON"; + if (LineBuffer.compare(0, name.length(), name) == 0) + ReadingStatus = true; + + // loop on tokens and data + while (ReadingStatus ) { + whatToDo=""; + AnalysisConfigFile >> whatToDo; + + // Search for comment symbol (%) + if (whatToDo.compare(0, 1, "%") == 0) { + AnalysisConfigFile.ignore(numeric_limits<streamsize>::max(), '\n' ); + } + else { + ReadingStatus = false; + } + } + } + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::Clear() { + DetectorNumber.clear(); + StripNumberX.clear(); + StripNumberY.clear(); + StripX.clear(); + StripY.clear(); + Energy.clear(); + Time.clear(); + + DetectorNumberX.clear(); + DetectorNumberY.clear(); + EnergyX.clear(); + EnergyY.clear(); + TimeX.clear(); + TimeY.clear(); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::ReadConfiguration(NPL::InputParser parser) { + vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("SEASON"); + if(NPOptionManager::getInstance()->GetVerboseLevel()) + cout << "//// " << blocks.size() << " detectors found " << endl; + + vector<string> cart = {"X1_Y1","X1_YMax","XMax_Y1","XMax_YMax","NStripsX","NStripsY","Group"}; + + for(unsigned int i = 0 ; i < blocks.size() ; i++){ + if(blocks[i]->HasTokenList(cart)){ + if(NPOptionManager::getInstance()->GetVerboseLevel()) + cout << endl << "//// SEASON " << i+1 << endl; + + TVector3 A = blocks[i]->GetTVector3("X1_Y1","mm"); + TVector3 B = blocks[i]->GetTVector3("X1_YMax","mm"); + TVector3 C = blocks[i]->GetTVector3("XMax_Y1","mm"); + TVector3 D = blocks[i]->GetTVector3("XMax_YMax","mm"); + int NumberOfStripsX = blocks[i]->GetInt("NStripsX"); + int NumberOfStripsY = blocks[i]->GetInt("NStripsY"); + AddDetector(A,B,C,D, NumberOfStripsX, NumberOfStripsY); + } + else{ + cout << "ERROR: check your input file formatting " << endl; + exit(1); + } + } + } + /////////////////////////////////////////////////////////////////////////// + TVector3 TSEASONPhysics::GetPositionOfInteraction(const int i) const + { + TVector3 Position; + Position = TVector3( GetStripPositionX( DetectorNumber[i], StripNumberX[i], StripNumberY[i]), + GetStripPositionY( DetectorNumber[i], StripNumberX[i], StripNumberY[i]), + GetStripPositionZ( DetectorNumber[i], StripNumberX[i], StripNumberY[i])); + return Position; + } + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::InitSpectra() { + m_Spectra = new TSEASONSpectra(m_NumberOfDetectors, m_NumberOfStripsX, m_NumberOfStripsY); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::FillSpectra() { + m_Spectra -> FillRawSpectra(m_EventData); + m_Spectra -> FillPreTreatedSpectra(m_PreTreatedData); + m_Spectra -> FillPhysicsSpectra(m_EventPhysics); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::CheckSpectra() { + m_Spectra->CheckSpectra(); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::ClearSpectra() { + // To be done + } + + + + /////////////////////////////////////////////////////////////////////////// + map< string , TH1*> TSEASONPhysics::GetSpectra() { + if(m_Spectra) + return m_Spectra->GetMapHisto(); + else{ + map< string , TH1*> empty; + return empty; + } + } + + /////////////////////////////////////////////////////////////////////////// + vector<TCanvas*> TSEASONPhysics::GetCanvas() { + /*if(m_Spectra) + return m_Spectra->GetCanvas(); + else{ + vector<TCanvas*> empty; + return empty; + }*/ + } + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::WriteSpectra() { + m_Spectra->WriteSpectra(); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::AddParameterToCalibrationManager() { + int NumberOfStrips = 32; + CalibrationManager* Cal = CalibrationManager::getInstance(); + vector<double> standard = {0,1}; + for (int i = 0; i < m_NumberOfDetectors; ++i) { + for(int k = 0;k<50;k++){ + Cal->AddParameter("SEASON", "D"+NPL::itoa(i+1)+"_DIST"+NPL::itoa(k)+"_ENERGY","SEASON_D"+ NPL::itoa(i+1)+"_DIST"+NPL::itoa(k)+"_ENERGY", standard); + Cal->AddParameter("SEASON", "D"+NPL::itoa(i+1)+"_FOILDIST"+NPL::itoa(k)+"_ENERGY","SEASON_D"+ NPL::itoa(i+1)+"_FOILDIST"+NPL::itoa(k)+"_ENERGY", standard); + } + + for(int j = 0; j < NumberOfStrips; ++j){ + Cal->AddParameter("SEASON", "D"+NPL::itoa(i+1)+"_STRIPX"+NPL::itoa(j+1)+"_ENERGY", + "SEASON_D"+ NPL::itoa(i+1)+"_STRIPX"+NPL::itoa(j+1)+"_ENERGY"); + Cal->AddParameter("SEASON", "D"+ NPL::itoa(i+1)+"_STRIPX"+NPL::itoa(j+1)+"_TIME","SEASON_D"+ NPL::itoa(i+1)+"_STRIP"+NPL::itoa(j+1)+"_TIME"); + } + } + } + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::InitializeRootInputRaw() { + TChain* inputChain = RootInput::getInstance()->GetChain(); + inputChain->SetBranchStatus("SEASON", true ); + inputChain->SetBranchAddress("SEASON", &m_EventData ); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::InitializeRootInputPhysics() { + TChain* inputChain = RootInput::getInstance()->GetChain(); + inputChain->SetBranchAddress("SEASON", &m_EventPhysics); + } + + + + /////////////////////////////////////////////////////////////////////////// + void TSEASONPhysics::InitializeRootOutput() { + TTree* outputTree = RootOutput::getInstance()->GetTree(); + outputTree->Branch("SEASON", "TSEASONPhysics", &m_EventPhysics); + } + + + + //////////////////////////////////////////////////////////////////////////////// + // Construct Method to be pass to the DetectorFactory // + //////////////////////////////////////////////////////////////////////////////// + NPL::VDetector* TSEASONPhysics::Construct() { + return (NPL::VDetector*) new TSEASONPhysics(); + } + + + + //////////////////////////////////////////////////////////////////////////////// + // Registering the construct method to the factory // + //////////////////////////////////////////////////////////////////////////////// + extern "C"{ + class proxy_SEASON{ + public: + proxy_SEASON(){ + NPL::DetectorFactory::getInstance()->AddToken("SEASON","SEASON"); + NPL::DetectorFactory::getInstance()->AddDetector("SEASON",TSEASONPhysics::Construct); + } + }; + + proxy_SEASON p_SEASON; + } + diff --git a/NPLib/Detectors/SEASON/TSEASONPhysics.h b/NPLib/Detectors/SEASON/TSEASONPhysics.h new file mode 100644 index 0000000000000000000000000000000000000000..1dfac6d9f1d7dcb0837eef87ddd89d522f2fc1b3 --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONPhysics.h @@ -0,0 +1,216 @@ +#ifndef TSEASONPHYSICS_H +#define TSEASONPHYSICS_H +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class hold SEASON Treated data * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + * * + *****************************************************************************/ + + // C++ headers + #include <vector> + #include <map> + #include <string> + using namespace std; + + // ROOT headers + #include "TObject.h" + #include "TH1.h" + #include "TVector3.h" + // NPTool headers + #include "TSEASONData.h" + #include "TSEASONSpectra.h" + #include "NPCalibrationManager.h" + #include "NPVDetector.h" + #include "NPInputParser.h" + // forward declaration + class TSEASONSpectra; + + + + class TSEASONPhysics : public TObject, public NPL::VDetector { + ////////////////////////////////////////////////////////////// + // constructor and destructor + public: + TSEASONPhysics(); + ~TSEASONPhysics() {}; + + + ////////////////////////////////////////////////////////////// + // Inherited from TObject and overriden to avoid warnings + public: + void Clear(); + void Clear(const Option_t*) {}; + + + ////////////////////////////////////////////////////////////// + // data obtained after BuildPhysicalEvent() and stored in + // output ROOT file + public: + Int_t EventMultiplicity; + + public: + vector<int> DetectorNumber; + vector<int> StripX; + vector<int> StripY; + vector<double> Energy; + vector<double> Time; + + // Use for checking purpose + vector<double> EnergyX; + vector<double> TimeX; + vector<double> EnergyY; + vector<double> TimeY; + vector<int> StripNumberX; + vector<int> StripNumberY; + vector<int> DetectorNumberX; + vector<int> DetectorNumberY; + + /// A usefull method to bundle all operation to add a detector + void AddDetector(TVector3 X1_Y1, TVector3 X1_YMax,TVector3 XMax_Y1,TVector3 XMax_YMax,int NumberOfStripsX, int NumberOfStripsY); + + ////////////////////////////////////////////////////////////// + // methods inherited from the VDetector ABC class + public: + // read stream from ConfigFile to pick-up detector parameters + void ReadConfiguration(NPL::InputParser); + + // add parameters to the CalibrationManger + void AddParameterToCalibrationManager(); + + // method called event by event, aiming at extracting the + // physical information from detector + void BuildPhysicalEvent(); + + // same as BuildPhysicalEvent() method but with a simpler + // treatment + void BuildSimplePhysicalEvent(); + + // same as above but for online analysis + void BuildOnlinePhysicalEvent() {BuildPhysicalEvent();}; + + // activate raw data object and branches from input TChain + // in this method mother branches (Detector) AND daughter leaves + // (fDetector_parameter) have to be activated + void InitializeRootInputRaw(); + + // activate physics data object and branches from input TChain + // in this method mother branches (Detector) AND daughter leaves + // (fDetector_parameter) have to be activated + void InitializeRootInputPhysics(); + + // create branches of output ROOT file + void InitializeRootOutput(); + + // clear the raw and physical data objects event by event + void ClearEventPhysics() {Clear();} + void ClearEventData() {m_EventData->Clear();} + + // methods related to the TSEASONSpectra class + // instantiate the TSEASONSpectra class and + // declare list of histograms + void InitSpectra(); + + // fill the spectra + void FillSpectra(); + + // used for Online mainly, sanity check for histograms and + // change their color if issues are found, for example + void CheckSpectra(); + + // used for Online only, clear all the spectra + void ClearSpectra(); + + // write spectra to ROOT output file + void WriteSpectra(); + + + ////////////////////////////////////////////////////////////// + // specific methods to SEASON array + public: + // remove bad channels, calibrate the data and apply thresholds + void PreTreat(); + + // clear the pre-treated object + void ClearPreTreatedData() {m_PreTreatedData->Clear();} + + // read the user configuration file. If no file is found, load standard one + void ReadAnalysisConfig(); + + // give and external TSEASONData object to TSEASONPhysics. + // needed for online analysis for example + void SetRawDataPointer(TSEASONData* rawDataPointer) {m_EventData = rawDataPointer;} + + // objects are not written in the TTree + private: + TSEASONData* m_EventData; //! + TSEASONData* m_PreTreatedData; //! + TSEASONPhysics* m_EventPhysics; //! + + // getters for raw and pre-treated data object + public: + TSEASONData* GetRawData() const {return m_EventData;} + TSEASONData* GetPreTreatedData() const {return m_PreTreatedData;} + + // Use to access the strip position + double GetStripPositionX( const int N, const int X, const int Y) const{return m_StripPositionX[N-1][X-1][Y-1] ; } ; + double GetStripPositionY( const int N, const int X, const int Y) const{return m_StripPositionY[N-1][X-1][Y-1] ; } ; + double GetStripPositionZ( const int N, const int X, const int Y) const{return m_StripPositionZ[N-1][X-1][Y-1] ; } ; + double GetNumberOfDetector() const { return m_NumberOfDetectors ; }; + // To be called after a build Physical Event + int GetEventMultiplicity() const { return EventMultiplicity ; }; + TVector3 GetPositionOfInteraction(const int i) const; + + // parameters used in the analysis + private: + + // thresholds + double m_XE_RAW_Threshold; //! + double m_YE_RAW_Threshold; //! + double m_XE_Threshold; //! + double m_YE_Threshold; //! + double m_E_RAW_Threshold; + double m_E_Threshold; + + // number of detectors + private: + int m_NumberOfDetectors; //! + int m_NumberOfStripsX; //! + int m_NumberOfStripsY; //! + vector< vector < vector < double > > > m_StripPositionX;//! + vector< vector < vector < double > > > m_StripPositionY;//! + vector< vector < vector < double > > > m_StripPositionZ;//! + + + // spectra class + private: + TSEASONSpectra* m_Spectra; // ! + + // spectra getter + public: + map<string, TH1*> GetSpectra(); + vector<TCanvas*> GetCanvas(); + + // Static constructor to be passed to the Detector Factory + public: + static NPL::VDetector* Construct(); + + ClassDef(TSEASONPhysics,1) // SEASONPhysics structure + }; + #endif diff --git a/NPLib/Detectors/SEASON/TSEASONSpectra.cxx b/NPLib/Detectors/SEASON/TSEASONSpectra.cxx new file mode 100644 index 0000000000000000000000000000000000000000..791e33e86513de660b869d272216eb7f9552c60a --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONSpectra.cxx @@ -0,0 +1,225 @@ +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class hold SEASON Spectra * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + * * + *****************************************************************************/ + + // class header + #include "TSEASONSpectra.h" + + // STL + #include <iostream> + #include <string> + using namespace std; + + // NPTool header + #include "NPOptionManager.h" + + + + //////////////////////////////////////////////////////////////////////////////// + TSEASONSpectra::TSEASONSpectra() { + SetName("SEASON"); + fNumberOfDetectors = 0; + fNumberOfStripsX = 0; + fNumberOfStripsY = 0; + } + + + + //////////////////////////////////////////////////////////////////////////////// + TSEASONSpectra::TSEASONSpectra(unsigned int NumberOfDetectors, unsigned int NumberOfStripsX, unsigned int NumberOfStripsY) { + if(NPOptionManager::getInstance()->GetVerboseLevel()>0) + cout << "************************************************" << endl + << "TSEASONSpectra : Initalizing control spectra for " + << NumberOfDetectors << " Detectors" << endl + << "************************************************" << endl ; + SetName("SEASON"); + fNumberOfDetectors = NumberOfDetectors; + fNumberOfStripsX = NumberOfStripsX; + fNumberOfStripsY = NumberOfStripsY; + + InitRawSpectra(); + InitPreTreatedSpectra(); + InitPhysicsSpectra(); + } + + + + //////////////////////////////////////////////////////////////////////////////// + TSEASONSpectra::~TSEASONSpectra() { + } + + + + //////////////////////////////////////////////////////////////////////////////// + void TSEASONSpectra::InitRawSpectra() { + static string name; + for (unsigned int i = 0; i < fNumberOfDetectors; i++) { // loop on number of detectors + // X Energy + name = "SEASON"+NPL::itoa(i+1)+"_XENERGY_RAW"; + AddHisto2D(name, name,fNumberOfStripsX,1,fNumberOfStripsX+1, 4096, 0, 16384, "SEASON/RAWXE"); + // X Time + name = "SEASON"+NPL::itoa(i+1)+"_XTIME_RAW"; + AddHisto2D(name, name,fNumberOfStripsX,1,fNumberOfStripsY+1, 4096, 0, 16384, "SEASON/RAWXT"); + // Y Energy + name = "SEASON"+NPL::itoa(i+1)+"_YENERGY_RAW"; + AddHisto2D(name, name,fNumberOfStripsY,1,fNumberOfStripsY+1, 4096, 0, 16384, "SEASON/RAWYE"); + // Y Time + name = "SEASON"+NPL::itoa(i+1)+"_YTIME_RAW"; + AddHisto2D(name, name,fNumberOfStripsY,1,fNumberOfStripsY+1, 4096, 0, 16384, "SEASON/RAWYT"); + } // end loop on number of detectors + } + + + + //////////////////////////////////////////////////////////////////////////////// + void TSEASONSpectra::InitPreTreatedSpectra() { + static string name; + for (unsigned int i = 0; i < fNumberOfDetectors; i++) { // loop on number of detectors + // X Energy + name = "SEASON"+NPL::itoa(i+1)+"_XENERGY_CAL"; + AddHisto2D(name, name,fNumberOfStripsX, 1, fNumberOfStripsX+1, 4096, 0, 25, "SEASON/CALXE"); + // X Time + name = "SEASON"+NPL::itoa(i+1)+"_XTIME_CAL"; + AddHisto2D(name, name,fNumberOfStripsX,1,fNumberOfStripsX+1, 4096, 0, 50, "SEASON/CALXT"); + // Y Energy + name = "SEASON"+NPL::itoa(i+1)+"_YENERGY_CAL"; + AddHisto2D(name, name,fNumberOfStripsY, 1, fNumberOfStripsY+1, 4096, 0, 25, "SEASON/CALYE"); + // Y Time + name = "SEASON"+NPL::itoa(i+1)+"_YTIME_CAL"; + AddHisto2D(name, name,fNumberOfStripsY,1,fNumberOfStripsY+1, 4096, 0, 50, "SEASON/CALYT"); + } // end loop on number of detectors + } + + + + //////////////////////////////////////////////////////////////////////////////// + void TSEASONSpectra::InitPhysicsSpectra() { + static string name; + // Kinematic Plot + name = "SEASON_ENERGY_TIME"; + AddHisto2D(name, name, 500, 0, 500, 500, 0, 50, "SEASON/PHY"); + } + + + + //////////////////////////////////////////////////////////////////////////////// + void TSEASONSpectra::FillRawSpectra(TSEASONData* RawData) { + static string name; + static string family; + + // X Energy + unsigned int sizeXE = RawData->GetXMultEnergy(); + for (unsigned int i = 0; i < sizeXE; i++) { + name = "SEASON"+NPL::itoa(RawData->GetXE_DetectorNbr(i))+"_XENERGY_RAW"; + family = "SEASON/RAW"; + + FillSpectra(family,name,RawData->GetXE_StripNbr(i),RawData->GetX_Energy(i)); + } + + // X Time + unsigned int sizeXT = RawData->GetXMultTime(); + for (unsigned int i = 0; i < sizeXT; i++) { + name = "SEASON"+NPL::itoa(RawData->GetXT_DetectorNbr(i))+"_XTIME_RAW"; + family = "SEASON/RAW"; + + FillSpectra(family,name,RawData->GetXT_StripNbr(i),RawData->GetX_Time(i)); + } + + // Y Energy + unsigned int sizeYE = RawData->GetYMultEnergy(); + for (unsigned int i = 0; i < sizeYE; i++) { + name = "SEASON"+NPL::itoa(RawData->GetYE_DetectorNbr(i))+"_YENERGY_RAW"; + family = "SEASON/RAW"; + + FillSpectra(family,name,RawData->GetYE_StripNbr(i),RawData->GetY_Energy(i)); + } + + // Y Time + unsigned int sizeYT = RawData->GetYMultTime(); + for (unsigned int i = 0; i < sizeYT; i++) { + name = "SEASON"+NPL::itoa(RawData->GetYT_DetectorNbr(i))+"_YTIME_RAW"; + family = "SEASON/RAW"; + + FillSpectra(family,name,RawData->GetYT_StripNbr(i),RawData->GetY_Time(i)); + } + } + + + + //////////////////////////////////////////////////////////////////////////////// + void TSEASONSpectra::FillPreTreatedSpectra(TSEASONData* PreTreatedData) { + static string name; + static string family; + + // X Energy + unsigned int sizeXE = PreTreatedData->GetXMultEnergy(); + for (unsigned int i = 0; i < sizeXE; i++) { + name = "SEASON"+NPL::itoa(PreTreatedData->GetXE_DetectorNbr(i))+"_XENERGY_CAL"; + family = "SEASON/CAL"; + + FillSpectra(family,name,PreTreatedData->GetXE_StripNbr(i),PreTreatedData->GetX_Energy(i)); + } + + // X Time + unsigned int sizeXT = PreTreatedData->GetXMultTime(); + for (unsigned int i = 0; i < sizeXT; i++) { + name = "SEASON"+NPL::itoa(PreTreatedData->GetXT_DetectorNbr(i))+"_XTIME_CAL"; + family = "SEASON/CAL"; + + FillSpectra(family,name,PreTreatedData->GetXT_StripNbr(i),PreTreatedData->GetX_Time(i)); + } + + // Y Energy + unsigned int sizeYE = PreTreatedData->GetYMultEnergy(); + for (unsigned int i = 0; i < sizeYE; i++) { + name = "SEASON"+NPL::itoa(PreTreatedData->GetYE_DetectorNbr(i))+"_YENERGY_CAL"; + family = "SEASON/CAL"; + + FillSpectra(family,name,PreTreatedData->GetYE_StripNbr(i),PreTreatedData->GetY_Energy(i)); + } + + // Y Time + unsigned int sizeYT = PreTreatedData->GetYMultTime(); + for (unsigned int i = 0; i < sizeYT; i++) { + name = "SEASON"+NPL::itoa(PreTreatedData->GetYT_DetectorNbr(i))+"_YTIME_CAL"; + family = "SEASON/CAL"; + + FillSpectra(family,name,PreTreatedData->GetYT_StripNbr(i),PreTreatedData->GetY_Time(i)); + } + } + + + + //////////////////////////////////////////////////////////////////////////////// + void TSEASONSpectra::FillPhysicsSpectra(TSEASONPhysics* Physics) { + static string name; + static string family; + family= "SEASON/PHY"; + + // Energy vs time + unsigned int sizeE = Physics->Energy.size(); + for(unsigned int i = 0 ; i < sizeE ; i++){ + name = "SEASON_ENERGY_TIME"; + FillSpectra(family,name,Physics->Energy[i],Physics->Time[i]); + } + } + diff --git a/NPLib/Detectors/SEASON/TSEASONSpectra.h b/NPLib/Detectors/SEASON/TSEASONSpectra.h new file mode 100644 index 0000000000000000000000000000000000000000..b1b4d329cff190e4b8739568536ae5433aa372ca --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONSpectra.h @@ -0,0 +1,65 @@ +#ifndef TSEASONSPECTRA_H +#define TSEASONSPECTRA_H +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class hold SEASON Spectra * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + * * + *****************************************************************************/ + + // NPLib headers + #include "NPVSpectra.h" + #include "TSEASONData.h" + #include "TSEASONPhysics.h" + + // Forward Declaration + class TSEASONPhysics; + + + class TSEASONSpectra : public VSpectra { + ////////////////////////////////////////////////////////////// + // constructor and destructor + public: + TSEASONSpectra(); + TSEASONSpectra(unsigned int NumberOfDetectors, unsigned int NumberOfStripsX, unsigned int NumberOfStripsY); + ~TSEASONSpectra(); + + ////////////////////////////////////////////////////////////// + // Initialization methods + private: + void InitRawSpectra(); + void InitPreTreatedSpectra(); + void InitPhysicsSpectra(); + + ////////////////////////////////////////////////////////////// + // Filling methods + public: + void FillRawSpectra(TSEASONData*); + void FillPreTreatedSpectra(TSEASONData*); + void FillPhysicsSpectra(TSEASONPhysics*); + + ////////////////////////////////////////////////////////////// + // Detector parameters + private: + unsigned int fNumberOfDetectors; + unsigned int fNumberOfStripsX; + unsigned int fNumberOfStripsY; + }; + + #endif diff --git a/NPLib/Detectors/SEASON/ressources/MaskBack.cxx b/NPLib/Detectors/SEASON/ressources/MaskBack.cxx new file mode 100644 index 0000000000000000000000000000000000000000..3cc0ba3d6c377d863a5b70855a659b3a24f1f7b4 --- /dev/null +++ b/NPLib/Detectors/SEASON/ressources/MaskBack.cxx @@ -0,0 +1,61 @@ +void MaskBack(){ + + unsigned int strips = 32 ; + double dimension = 67.975; + double active = 63.96; + double pitch = 2; + double width = 1.960; + + // mm per pixel + double scale = 0.005; + //pitch in pixel + unsigned int spitch = pitch/scale; + unsigned int swidth = width/scale; + unsigned int sinter = spitch - swidth; + cout << spitch << " " << swidth << " " << sinter << endl; + + // image size + unsigned int size = dimension/scale; + cout << "Image size: " << size << "x" << size << endl; + double* zargb = new double[size*size]; + TASImage* mask = new TASImage("mask",zargb,size,size,0); + unsigned int* argb = mask->GetArgbArray(); + unsigned int index = 0; + double border1 = 0.5*(dimension-active); + double border2 = (border1+active); //(active)/scale+border1; + unsigned int sborder1=402; //border1/scale; + unsigned int sborder2=size-401; //border2/scale; + cout << "Border 1 : " << sborder1 << " Border 2 : " << sborder2 << endl; + + for(unsigned int py = 0 ; py < size ; py++){ + bool test = true; + for(unsigned int px = 0 ; px < size ; px++){ + if(px%1000==0) cout << "\r" << px << "/" << size << flush; + // Compute array index + index = px * size + py; + // Inactive sides + if(px < sborder1|| py < sborder1 || px > sborder2 || py > sborder2) argb[index] = 0xffff0000; + else{ // strips + unsigned int coord = py-sborder1; + unsigned int nbr = coord/spitch; + if(coord>=((nbr+1)*spitch-sinter)){ + // interstrip + argb[index] = 0xffff0000+((nbr+2)<<8)+nbr+1; + // if(test) { + // // cout << coord << " " << nbr << " " << nbr*spitch+sinter << " " << spitch << " " << sinter << " " << sborder1 << " " << px << endl; + // cout << coord << " " << nbr << " " << hex << argb[index] << dec << endl; + // test = false; + // } + } + else if (nbr < strips+1) argb[index] = 0xff000000 + nbr + 1; + else argb[index] = 0xff00ff00; + } + } + } + + + mask->WriteImage("maskBack.png"); + delete[] zargb; + mask->Draw(); + +} diff --git a/NPLib/Detectors/SEASON/ressources/MaskFront.cxx b/NPLib/Detectors/SEASON/ressources/MaskFront.cxx new file mode 100644 index 0000000000000000000000000000000000000000..b5f07914bfe69442b7b62d8fb40a161f95e317c9 --- /dev/null +++ b/NPLib/Detectors/SEASON/ressources/MaskFront.cxx @@ -0,0 +1,62 @@ +void MaskFront(){ + + unsigned int strips = 32 ; + double dimension = 67.975; + double active = 63.96; + double pitch = 2; + double width = 1.925; + + // mm per pixel + double scale = 0.005; + //pitch in pixel + unsigned int spitch = pitch/scale; + unsigned int swidth = width/scale; + unsigned int sinter = spitch - swidth; + cout << spitch << " " << swidth << " " << sinter << endl; + + // image size + unsigned int size = dimension/scale; + cout << "Image size: " << size << "x" << size << endl; + double* zargb = new double[size*size]; + TASImage* mask = new TASImage("mask",zargb,size,size,0); + unsigned int* argb = mask->GetArgbArray(); + unsigned int index = 0; + double border1 = 0.5*(dimension-active); + double border2 = (border1+active); //(active)/scale+border1; + unsigned int sborder1=405; //border1/scale; + unsigned int sborder2=size-405; //border2/scale; + cout << "Border 1 : " << sborder1 << " Border 2 : " << sborder2 << endl; + + + for(unsigned int px = 0 ; px < size ; px++){ + bool test = true; + for(unsigned int py = 0 ; py < size ; py++){ + if(px%1000==0) cout << "\r" << px << "/" << size << flush; + // Compute array index + index = px * size + py; + // Inactive sides + if(px < sborder1|| py < sborder1 || px > sborder2 || py > sborder2) argb[index] = 0xffff0000; + else{ // strips + unsigned int coord = px-sborder1; + unsigned int nbr = coord/spitch; + if(coord>=((nbr+1)*spitch-sinter)){ + // interstrip + argb[index] = 0xffff0000+((nbr+2)<<8)+nbr+1; + // if(test) { + // // cout << coord << " " << nbr << " " << nbr*spitch+sinter << " " << spitch << " " << sinter << " " << sborder1 << " " << px << endl; + // cout << coord << " " << nbr << " " << hex << argb[index] << dec << endl; + // test = false; + // } + } + else if (nbr < strips+1) argb[index] = 0xff000000 + nbr + 1; + else argb[index] = 0xff00ff00; + } + } + } + + + mask->WriteImage("maskFront.png"); + delete[] zargb; + mask->Draw(); + +} diff --git a/NPLib/Utility/npcalibration b/NPLib/Utility/npcalibration new file mode 100755 index 0000000000000000000000000000000000000000..234be00740659aee8f50d2165e8f8a8e2f59949a Binary files /dev/null and b/NPLib/Utility/npcalibration differ diff --git a/NPLib/Utility/npcalibration.cxx b/NPLib/Utility/npcalibration.cxx index 5f5f76a9635568098ed0db78d40e9347123f6544..b183b71af8ae2d74386677ef3e5ae3919b48461c 100644 --- a/NPLib/Utility/npcalibration.cxx +++ b/NPLib/Utility/npcalibration.cxx @@ -37,16 +37,14 @@ int main(int argc , char** argv){ } } - if (myOptionManager->IsDefault("EventGenerator")) { - std::string name = RootInput::getInstance(inputfilename)->DumpAsciiFile("EventGenerator"); - if(name!="fail"){ - myOptionManager->SetReactionFile(name); - std::cout << "\033[1;33mInfo: No Event file given, using Input tree one \033[0m" << std::endl;; - } + if (myOptionManager->IsDefault("DoCalibration")) { + std::cout << "Please use a valid DoCalibration File" << std::endl; + return 0; } // get input files from NPOptionManager std::string detectorfileName = myOptionManager->GetDetectorFile(); + std::string docalibrationfileName = myOptionManager->GetDoCalibrationFile(); std::string OutputfileName = myOptionManager->GetOutputFile(); // Instantiate RootOutput @@ -127,17 +125,20 @@ int main(int argc , char** argv){ unsigned long new_nentries = 0 ; int current_tree = 0 ; int total_tree = Chain->GetNtrees(); + int entry_max = NPOptionManager::getInstance()->GetNumberOfEntryToAnalyse(); bool IsCalibration = myOptionManager->IsCalibration(); std::cout << IsCalibration << "\n"; if(IsCalibration){ + myDetector->ReadDoCalibrationFile(docalibrationfileName); myDetector->InitializeRootHistogramsCalib(); - while(inputTreeReader->Next()){ + while(inputTreeReader->Next() && treated < entry_max){ myDetector->FillHistogramsCalib(); current_tree = Chain->GetTreeNumber()+1; ProgressDisplay(tv_begin,tv_end,treated,inter,nentries,mean_rate,displayed,current_tree,total_tree); } + myDetector->DoCalibration(); myDetector->WriteHistogramsCalib(); } else{ diff --git a/NPSimulation/Detectors/SEASON/CMakeLists.txt b/NPSimulation/Detectors/SEASON/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..cec8be14369fba8453c353007f753061ed584ef2 --- /dev/null +++ b/NPSimulation/Detectors/SEASON/CMakeLists.txt @@ -0,0 +1,2 @@ +add_library(NPSSEASON SHARED SEASON.cc) +target_link_libraries(NPSSEASON NPSCore ${ROOT_LIBRARIES} ${Geant4_LIBRARIES} ${NPLib_LIBRARIES} -lNPSEASON) diff --git a/NPSimulation/Detectors/SEASON/SEASON.cc b/NPSimulation/Detectors/SEASON/SEASON.cc new file mode 100644 index 0000000000000000000000000000000000000000..4e785717dabf624b3aeb9beb391e4b28adecda7b --- /dev/null +++ b/NPSimulation/Detectors/SEASON/SEASON.cc @@ -0,0 +1,686 @@ +/***************************************************************************** +* Copyright (C) 2009-2023 this file is part of the NPTool Project * +* * +* For the licensing terms see $NPTOOL/Licence/NPTool_Licence * +* For the list of contributors see $NPTOOL/Licence/Contributors * +*****************************************************************************/ + +/***************************************************************************** +* Original Author: Emmanuel Rey-herme * +* contact address: marine.vandebrouck@cea.fr * +* * +* Creation Date : septembre 2023 * +* Last update : * +*---------------------------------------------------------------------------* +* Decription: * +* This class describe SEASON simulation * +* * +*---------------------------------------------------------------------------* +* Comment: * +* * +*****************************************************************************/ + +// C++ headers +#include <sstream> +#include <cmath> +#include <limits> +//G4 Geometry object +#include "G4Tubs.hh" +#include "G4Box.hh" +#include "G4Trd.hh" +#include "G4SubtractionSolid.hh" +#include "G4UnionSolid.hh" +#include "G4MultiUnion.hh" +#include "G4VSolid.hh" + +//G4 sensitive +#include "G4SDManager.hh" +#include "G4MultiFunctionalDetector.hh" + +//G4 various object +#include "G4Material.hh" +#include "G4Transform3D.hh" +#include "G4PVPlacement.hh" +#include "G4VisAttributes.hh" +#include "G4Colour.hh" +#include "Randomize.hh" + +// NPTool header +#include "SEASON.hh" +#include "DSSDScorers.hh" +#include "InteractionScorers.hh" +#include "RootOutput.h" +#include "MaterialManager.hh" +#include "NPSDetectorFactory.hh" +#include "NPOptionManager.h" +#include "NPSHitsMap.hh" +// CLHEP header +#include "CLHEP/Random/RandGauss.h" + +#include "TMath.h" + +using namespace std; +using namespace CLHEP; + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +namespace SEASON_NS{ + // Energy and time Resolution + const double ResoTime = 8.5*ns; + const double ResoAlpha = 6.37*keV; // Equivalent to 15 keV FWHM + const double ResoElectron = 2.97*keV; // Equivalent to 7 keV FWHM; + + // + const double Thickness = 1*mm; //Thickness of DSSDs + const double FoilWheelCenterDist = 16.*cm; // distance from foil center to wheel center + const double WheelRadius = 11.5*cm; + const double WheelThickness = 2*mm; + const double FinThickness = 0.5*mm; + const double FinLenght = 6.*cm; + const double FinWidth = 3.*cm; + const int FoilNbr = 11; + const double DistDSSD1_AlWindow = 9*mm; + + const double StripWidth = 2*mm; + const double StripPitch = 1.925*mm; + const double StripLength = 63.96*mm; + const double DetSize = 67.975*mm; + const int NumberOfStripsX = 32; + const int NumberOfStripsY = 32; + + const double DeadLayerThickness = 50 * nm; + const double GridThickness = 300 * nm; + const double GridWidth = 30 * um; + + G4Material * FoilMaterial = MaterialManager::getInstance()->GetMaterialFromLibrary("C"); + G4Material* DeadLayerMaterial = MaterialManager::getInstance()->GetMaterialFromLibrary("Si"); + G4Material* Grid_Material = MaterialManager::getInstance()->GetMaterialFromLibrary("Al"); +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// SEASON Specific Method +SEASON::SEASON(){ + m_Event = new TSEASONData() ; + m_SEASONScorer = 0; + + m_DistDSSD1 = 2*mm; + m_DistTunnel = 2*mm; + + // RGB Color + Transparency + m_VisSquare = new G4VisAttributes(G4Colour(0, 1, 0.5, 1)); + m_VisWheel = new G4VisAttributes(G4Colour(1, 1, 0, 1)); + m_VisFoil = new G4VisAttributes(G4Colour(1, 0, 0, 1)); + m_VisGe = new G4VisAttributes(G4Colour(0.5, 0.5, 0.5, 0.5)); + m_VisWindow = new G4VisAttributes(G4VisAttributes::Invisible); + m_VisGrid = new G4VisAttributes(G4VisAttributes::Invisible); + m_VisChamber = new G4VisAttributes(G4Colour(0.5, 0.5, 0.5, 0.5)); +} + +SEASON::~SEASON(){ +} +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +void SEASON::AddDetector(G4ThreeVector X1_Y1, G4ThreeVector X1_YMax, G4ThreeVector XMax_Y1, G4ThreeVector XMax_YMax){ + m_X1_Y1.push_back(X1_Y1); + m_X1_YMax.push_back(X1_YMax); + m_XMax_Y1.push_back(XMax_Y1); + m_XMax_YMax.push_back(XMax_YMax); +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +void SEASON::AddDetector(double DistDSSD1, double DistTunnel, bool Deloc, bool EnableWheel, bool RotateWheel, bool EnableChamber){ + + m_EnableWheel = EnableWheel; + m_RotateWheel = RotateWheel; + m_EnableChamber = EnableChamber; + + m_DistDSSD1 = DistDSSD1; + m_DistTunnel = DistTunnel; + + double pos = SEASON_NS::DetSize*0.5; + double interX = 0.2*mm; + double interY = 0.2*mm; + + // Add DSSD1 + AddDetector(G4ThreeVector(-pos,-pos,DistDSSD1), G4ThreeVector(-pos,pos,DistDSSD1), G4ThreeVector(pos,-pos,DistDSSD1), G4ThreeVector(pos,pos,DistDSSD1)); + + // Add Tunnel detectors + AddDetector(G4ThreeVector(pos+interX,-pos,-DistTunnel), G4ThreeVector(pos+interX,pos,-DistTunnel), G4ThreeVector(pos+interX,-pos,-DistTunnel-SEASON_NS::DetSize), G4ThreeVector(pos+interX,pos,-DistTunnel-SEASON_NS::DetSize)); + AddDetector(G4ThreeVector(pos,pos+interY,-DistTunnel), G4ThreeVector(-pos,pos+interY,-DistTunnel), G4ThreeVector(pos,pos+interY,-DistTunnel-SEASON_NS::DetSize), G4ThreeVector(-pos,pos+interY,-DistTunnel-SEASON_NS::DetSize)); + AddDetector(G4ThreeVector(-pos-interX,pos,-DistTunnel), G4ThreeVector(-pos-interX,-pos,-DistTunnel), G4ThreeVector(-pos-interX,pos,-DistTunnel-SEASON_NS::DetSize), G4ThreeVector(-pos,-pos-interX,-DistTunnel-SEASON_NS::DetSize)); + AddDetector(G4ThreeVector(-pos,-pos-interY,-DistTunnel), G4ThreeVector(pos,-pos-interY,-DistTunnel), G4ThreeVector(-pos,-pos-interY,-DistTunnel-SEASON_NS::DetSize), G4ThreeVector(pos,-pos-interY,-DistTunnel-SEASON_NS::DetSize)); + + // Add Delocalized station detectors if activated + if(Deloc){ + G4double angle = -4.*2.*TMath::Pi()/SEASON_NS::FoilNbr - TMath::Pi()*0.5 ; + G4ThreeVector * DelocFoilPos = new G4ThreeVector(TMath::Cos(angle)*SEASON_NS::FoilWheelCenterDist, (TMath::Sin(angle)+1)*SEASON_NS::FoilWheelCenterDist, 0*cm); + + double DelocFoilPosX = DelocFoilPos->getX(); + double DelocFoilPosY = DelocFoilPos->getY(); + + AddDetector(G4ThreeVector(DelocFoilPosX-pos,DelocFoilPosY-pos,DistDSSD1), G4ThreeVector(DelocFoilPosX-pos,DelocFoilPosY+pos,DistDSSD1), G4ThreeVector(DelocFoilPosX+pos,DelocFoilPosY-pos,DistDSSD1), G4ThreeVector(DelocFoilPosX+pos,DelocFoilPosY+pos,DistDSSD1)); + AddDetector(G4ThreeVector(DelocFoilPosX-pos,DelocFoilPosY-pos,-DistTunnel), G4ThreeVector(DelocFoilPosX-pos,DelocFoilPosY+pos,-DistTunnel), G4ThreeVector(DelocFoilPosX+pos,DelocFoilPosY-pos,-DistTunnel), G4ThreeVector(DelocFoilPosX+pos,DelocFoilPosY+pos,-DistTunnel)); + } +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +G4LogicalVolume* SEASON::BuildSquareDetector(){ + + G4Box* box = new G4Box("SEASON_Box",SEASON_NS::DetSize*0.5, SEASON_NS::DetSize*0.5,SEASON_NS::Thickness*0.5); + G4Material* DetectorMaterial = MaterialManager::getInstance()->GetMaterialFromLibrary("Si"); + G4LogicalVolume* m_SquareDetector = new G4LogicalVolume(box,DetectorMaterial,"logic_SEASON_Box",0,0,0); + m_SquareDetector->SetVisAttributes(m_VisSquare); + m_SquareDetector->SetSensitiveDetector(m_SEASONScorer); + return m_SquareDetector; +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +G4LogicalVolume* SEASON::BuildWindow(){ + + G4Box* solidWindow = new G4Box("WindowBox",SEASON_NS::DetSize*0.5, SEASON_NS::DetSize*0.5,SEASON_NS::DeadLayerThickness*0.5); + G4LogicalVolume* logicWindow = new G4LogicalVolume(solidWindow,SEASON_NS::DeadLayerMaterial,"logicWindow",0,0,0); + //logicWindow->SetVisAttributes(new G4VisAttributes(G4Colour(0, 1, 1, 0.5))); + logicWindow->SetVisAttributes(m_VisWindow); + return logicWindow; +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +G4LogicalVolume* SEASON::BuildChamber(){ + G4Box* plainChamber = new G4Box("PlainChamber",300*mm, 372.75*mm,4*mm); + + // make holes + G4Tubs* hole = new G4Tubs("Hole", 0, 141.5*mm+1*micrometer, 4*mm+100*micrometer, 0*degree, 360*degree); + + G4SubtractionSolid * DrilledOnceChamber = new G4SubtractionSolid("DrilledOnceChamber",plainChamber,hole,NULL,G4ThreeVector(70.9*mm,-159.05*mm,1.5*mm)); + G4SubtractionSolid * DrilledChamber = new G4SubtractionSolid("DrilledChamber",DrilledOnceChamber,hole,NULL,G4ThreeVector(-50*mm,105.75*mm,1.5*mm)); + + + G4Material * ChamberMaterial = MaterialManager::getInstance()->GetMaterialFromLibrary("Al"); + G4LogicalVolume * m_Chamber = new G4LogicalVolume(DrilledChamber, ChamberMaterial, "logic_SEASON_Chamber"); + m_Chamber->SetVisAttributes(m_VisChamber); + + return m_Chamber; +} + +G4LogicalVolume* SEASON::BuildGrid(){ + G4Box* plainStrip = new G4Box("plainStrip",SEASON_NS::StripPitch * 0.5, SEASON_NS::StripLength * 0.5, SEASON_NS::GridThickness * 0.5); + G4Box* hole = new G4Box("hole", SEASON_NS::StripPitch * 0.5 - SEASON_NS::GridWidth, SEASON_NS::StripLength * 0.5 - SEASON_NS::GridWidth, SEASON_NS::GridThickness * 0.5 + 10 * um); + G4SubtractionSolid * solidStrip = new G4SubtractionSolid("SEASON_Strip", plainStrip, hole, 0, G4ThreeVector(0,0,0)); + + G4LogicalVolume * logicStrip = new G4LogicalVolume(solidStrip,SEASON_NS::Grid_Material, "logicStrip"); + //logicStrip->SetVisAttributes(new G4VisAttributes(G4Colour(1, 0, 0, 1))); + logicStrip->SetVisAttributes(m_VisGrid); + return logicStrip; +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// Wheel with the mounting implantation foils +G4LogicalVolume* SEASON::BuildWheel() +{ + G4double WheelRadius = SEASON_NS::WheelRadius; + G4double WheelThickness = SEASON_NS::WheelThickness; + G4double FinLenght = SEASON_NS::FinLenght; + G4double FinWidth = SEASON_NS::FinWidth; + G4double FinThickness = SEASON_NS::FinThickness; + G4double FoilNbr = SEASON_NS::FoilNbr; + // Make wheel + G4Tubs * plainWheel = new G4Tubs("PlainWheel", 0, WheelRadius, WheelThickness*0.5, 0*degree, 360*degree); + + // Make fins + G4Box * plainFin = new G4Box("PlainFin", FinWidth*0.5, FinLenght*0.5+0.5*cm, FinThickness*0.5); + + // make holes + G4Tubs * hole = new G4Tubs("Hole", 0, m_FoilRadius+1*micrometer, FinThickness*0.5+100*micrometer, 0*degree, 360*degree); + + G4UnionSolid * wheel = new G4UnionSolid("SEASON_Wheel",plainWheel,plainFin,0,G4ThreeVector(0, WheelRadius+FinLenght*0.5-0.5*cm, -FinThickness*0.5)); + G4SubtractionSolid * wheel2 = new G4SubtractionSolid("SEASON_Wheel",wheel,hole,NULL,G4ThreeVector(0,SEASON_NS::FoilWheelCenterDist, -FinThickness*0.5)); + + for ( int i = 1; i < FoilNbr; i++ ) + { + G4RotationMatrix zRot; + zRot.rotateZ(i*2*TMath::Pi()/FoilNbr*rad); + G4UnionSolid * wheelbis = new G4UnionSolid("SEASON_Wheel", wheel2, plainFin, + &zRot, G4ThreeVector(TMath::Sin(i*2*TMath::Pi()/FoilNbr)*(WheelRadius+FinLenght*0.5-0.5*cm), + TMath::Cos(i*2*TMath::Pi()/FoilNbr)*(WheelRadius+FinLenght*0.5-0.5*cm), -FinThickness*0.5)); + wheel = wheelbis; + G4SubtractionSolid * wheelbis2 = new G4SubtractionSolid("SEASON_Wheel", wheel, hole, + NULL, G4ThreeVector(TMath::Sin(i*2*TMath::Pi()/FoilNbr)*SEASON_NS::FoilWheelCenterDist, + TMath::Cos(i*2*TMath::Pi()/FoilNbr)*SEASON_NS::FoilWheelCenterDist, -FinThickness*0.5)); + wheel2 = wheelbis2; + } + + G4Material * WheelMaterial = MaterialManager::getInstance()->GetMaterialFromLibrary("Al"); + G4LogicalVolume * m_Wheel = new G4LogicalVolume(wheel2, WheelMaterial, "logic_SEASON_Wheel"); + m_Wheel->SetVisAttributes(m_VisWheel); + + return m_Wheel; +} + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// Wheel with the mounting implantation foils +G4LogicalVolume* SEASON::BuildRotatedWheel() +{ + G4double WheelRadius = SEASON_NS::WheelRadius; + G4double WheelThickness = SEASON_NS::WheelThickness; + G4double FinLenght = SEASON_NS::FinLenght; + G4double FinWidth = SEASON_NS::FinWidth; + G4double FinThickness = SEASON_NS::FinThickness; + G4double FoilNbr = SEASON_NS::FoilNbr; + // Make wheel + G4Tubs * plainWheel = new G4Tubs("PlainWheel", 0, WheelRadius, WheelThickness*0.5, 0*degree, 360*degree); + + // Make fins + G4Box * plainFin = new G4Box("PlainFin", FinWidth*0.5, FinLenght*0.5+0.5*cm, FinThickness*0.5); + + // make holes + G4Tubs * hole = new G4Tubs("Hole", 0, m_FoilRadius+1*micrometer, FinThickness*0.5+100*micrometer, 0*degree, 360*degree); + + G4RotationMatrix zRot0; + zRot0.rotateZ(TMath::Pi()/FoilNbr*rad); + + G4UnionSolid * wheel = new G4UnionSolid("SEASON_Wheel", plainWheel, plainFin, &zRot0, G4ThreeVector(TMath::Sin(TMath::Pi()/FoilNbr)*(WheelRadius+FinLenght*0.5-0.5*cm), TMath::Cos(TMath::Pi()/FoilNbr)*(WheelRadius+FinLenght*0.5-0.5*cm), -FinThickness)); + + G4SubtractionSolid * wheel2 = new G4SubtractionSolid("SEASON_Wheel", wheel, hole, NULL, G4ThreeVector(TMath::Sin(TMath::Pi()/FoilNbr)*SEASON_NS::FoilWheelCenterDist, TMath::Cos(TMath::Pi()/FoilNbr)*SEASON_NS::FoilWheelCenterDist, -FinThickness)); + + for ( int i = 1; i < FoilNbr; i++ ) + { + G4RotationMatrix zRot; + zRot.rotateZ((i+1*0.5)*2*TMath::Pi()/FoilNbr*rad); + G4UnionSolid * wheelbis = new G4UnionSolid("SEASON_Wheel", wheel2, plainFin, &zRot, G4ThreeVector(TMath::Sin((i+1*0.5)*2*TMath::Pi()/FoilNbr)*(WheelRadius+FinLenght*0.5-0.5*cm), TMath::Cos((i+1*0.5)*2*TMath::Pi()/FoilNbr)*(WheelRadius+FinLenght*0.5-0.5*cm), -FinThickness)); + wheel = wheelbis; + G4SubtractionSolid * wheelbis2 = new G4SubtractionSolid("SEASON_Wheel", wheel, hole, NULL, G4ThreeVector(TMath::Sin((i+1*0.5)*2*TMath::Pi()/FoilNbr)*SEASON_NS::FoilWheelCenterDist, TMath::Cos((i+1*0.5)*2*TMath::Pi()/FoilNbr)*SEASON_NS::FoilWheelCenterDist, -FinThickness)); + wheel2 = wheelbis2; + } + + G4Material * WheelMaterial = MaterialManager::getInstance()->GetMaterialFromLibrary("Al"); + G4LogicalVolume * m_Wheel = new G4LogicalVolume(wheel2, WheelMaterial, "logic_SEASON_Wheel"); + m_Wheel->SetVisAttributes(m_VisWheel); + + return m_Wheel; +} + + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// The implantation foil (Carbon) +G4LogicalVolume* SEASON::BuildFoil() +{ + G4Tubs * foil = new G4Tubs("ImplantationFoil", 0, m_FoilRadius, m_FoilThickness * 0.5, 0*degree, 360*degree); + G4LogicalVolume * m_Foil = new G4LogicalVolume(foil, SEASON_NS::FoilMaterial, "logic_SEASON_Foil"); + + m_Foil->SetVisAttributes(m_VisFoil); //red G4Colour(0.5, 0.5, 0.5, 1)); //grey + + return m_Foil; +} + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// Virtual Method of NPS::VDetector class + +// Read stream at Configfile to pick-up parameters of detector (Position,...) +// Called in DetecorConstruction::ReadDetextorConfiguration Method +void SEASON::ReadConfiguration(NPL::InputParser parser){ + vector<NPL::InputBlock*> blocks = parser.GetAllBlocksWithToken("SEASON"); + if(NPOptionManager::getInstance()->GetVerboseLevel()) + cout << "//// " << blocks.size() << " detectors found " << endl; + + vector<string> cart = {"X1_Y1","X1_YMax","XMax_Y1","XMax_YMax"}; + vector<string> cartfirst = {"X1_Y1","X1_YMax","XMax_Y1","XMax_YMax", "EnergyThreshold"}; + vector<string> full = {"DSSD1Dist", "TunnelDist", "UseDelocStation", "UseWheel", "UseChamber", "EnergyThreshold", "FoilRadius", "FoilThickness"}; + double FoilThickness; + for(unsigned int i = 0 ; i < blocks.size() ; i++){ + //cout << "!!! !!! !!! OK1 " << endl; + if(blocks[i]->HasTokenList(cartfirst)){ + //cout << "!!! !!! !!! Cart ok" << endl; + if(NPOptionManager::getInstance()->GetVerboseLevel()) cout << endl << "//// SEASON " << i+1 << endl; + + G4ThreeVector A = NPS::ConvertVector( blocks[i]->GetTVector3("X1_Y1","mm")); + G4ThreeVector B = NPS::ConvertVector( blocks[i]->GetTVector3("X1_YMax","mm")); + G4ThreeVector C = NPS::ConvertVector( blocks[i]->GetTVector3("XMax_Y1","mm")); + G4ThreeVector D = NPS::ConvertVector( blocks[i]->GetTVector3("XMax_YMax","mm")); + m_EnergyThreshold = blocks[i]->GetDouble("EnergyThreshold","keV"); + m_FoilThickness = (FoilThickness/0.226) * nm; + AddDetector(A,B,C,D); + } + else if(blocks[i]->HasTokenList(cart)){ + //cout << "!!! !!! !!! Cart ok" << endl; + if(NPOptionManager::getInstance()->GetVerboseLevel()) cout << endl << "//// SEASON " << i+1 << endl; + + G4ThreeVector A = NPS::ConvertVector( blocks[i]->GetTVector3("X1_Y1","mm")); + G4ThreeVector B = NPS::ConvertVector( blocks[i]->GetTVector3("X1_YMax","mm")); + G4ThreeVector C = NPS::ConvertVector( blocks[i]->GetTVector3("XMax_Y1","mm")); + G4ThreeVector D = NPS::ConvertVector( blocks[i]->GetTVector3("XMax_YMax","mm")); + AddDetector(A,B,C,D); + } + else if(blocks[i]->HasTokenList(full)){ + if(NPOptionManager::getInstance()->GetVerboseLevel()) cout << endl << "//// SEASON " << i+1 << endl; + + double DistDSSD1 = blocks[i]->GetDouble("DSSD1Dist","mm"); + double DistTunnel = blocks[i]->GetDouble("TunnelDist","mm"); + + m_EnergyThreshold = blocks[i]->GetDouble("EnergyThreshold","keV"); + m_FoilRadius = blocks[i]->GetDouble("FoilRadius","mm"); + FoilThickness = blocks[i]->GetDouble("FoilThickness","void"); + m_FoilThickness = (FoilThickness/0.226) * nm; + + string Deloc = blocks[i]->GetString("UseDelocStation"); + bool EnableDeloc; + if(Deloc=="True") EnableDeloc = true; + else if(Deloc=="False") EnableDeloc = false; + else{ + cout << "ERROR: UseDelocStation must be either True or False, please check input file formatting" << endl; + exit(1); + } + + string Wheel = blocks[i]->GetString("UseWheel"); + bool EnableWheel = false; + bool RotateWheel = false; + if(Wheel=="Rotated") RotateWheel = true; + else if(Wheel=="True") EnableWheel = true; + else if(Wheel=="False") EnableWheel = false; + else{ + cout << "ERROR: UseWheel must be either True, False or Rotated, please check input file formatting" << endl; + exit(1); + } + + string Chamber = blocks[i]->GetString("UseChamber"); + bool EnableChamber; + if(Chamber=="True") EnableChamber = true; + else if(Chamber=="False") EnableChamber = false; + else{ + cout << "ERROR: UseChamber must be either True or False, please check input file formatting" << endl; + exit(1); + } + + AddDetector(DistDSSD1, DistTunnel, EnableDeloc, EnableWheel, RotateWheel, EnableChamber); + } + else{ + cout << "ERROR: check your input file formatting " << endl; + exit(1); + } + } + cout << " Foil Thickness : " << FoilThickness << " -> " << m_FoilThickness/nm << " nm with a carbon density rho = 2.26 g/cm3" << endl; +} + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... + +// Construct detector and inialise sensitive part. +// Called After DetecorConstruction::AddDetector Method +void SEASON::ConstructDetector(G4LogicalVolume* world){ + + G4bool checkOverlaps = true; + + // + // Construct DSSDs + + for (unsigned short i = 0 ; i < m_X1_Y1.size() ; i++) { + + G4RotationMatrix* Rot = NULL; + G4ThreeVector Det_pos = G4ThreeVector(0, 0, 0); + G4ThreeVector u = G4ThreeVector(0, 0, 0); + G4ThreeVector v = G4ThreeVector(0, 0, 0); + G4ThreeVector w = G4ThreeVector(0, 0, 0); + G4ThreeVector Center = G4ThreeVector(0, 0, 0); + + G4ThreeVector Front_Window_pos = G4ThreeVector(0, 0, 0); + G4ThreeVector Grid_pos = G4ThreeVector(0, 0, 0); + // (u,v,w) unitary vector associated to telescope referencial + // (u,v) // to silicon plan + // w perpendicular to (u,v) plan and pointing CsI + u = m_XMax_Y1[i] - m_X1_Y1[i]; + u = u.unit(); + v = m_X1_YMax[i] - m_X1_Y1[i]; + v = v.unit(); + w = u.cross(v); + w = w.unit(); + + Center = (m_X1_Y1[i] + m_X1_YMax[i] + m_XMax_Y1[i] + m_XMax_YMax[i]) / 4; + + // Passage Matrix from Lab Referential to Telescope Referential + Rot = new G4RotationMatrix(u, v, w); + if( w == G4ThreeVector(0,0,-1) && Center.getZ() > 0) w = -w; + Det_pos = w * SEASON_NS::Thickness * 0.5 + Center ; + + Front_Window_pos = - w * SEASON_NS::DeadLayerThickness * 0.5 + Center; + Grid_pos = - w * (SEASON_NS::DeadLayerThickness + SEASON_NS::GridThickness * 0.5) + Center; + + if(SEASON_NS::DeadLayerThickness>0){ + new G4PVPlacement(G4Transform3D(*Rot,Front_Window_pos), BuildWindow(), "SEASON",world,false, m_X1_Y1.size()+i+1, FALSE); + } + else if(i==0) cout << "No entrance window " << endl; + + + if(SEASON_NS::GridThickness>0 and SEASON_NS::GridWidth>0){ + for(int strip=0;strip<SEASON_NS::NumberOfStripsX;strip++){ + G4ThreeVector Strip_pos = u*((-strip+(SEASON_NS::NumberOfStripsX-1)/2)*SEASON_NS::StripWidth); + new G4PVPlacement(G4Transform3D(*Rot,Grid_pos+Strip_pos), BuildGrid(), "SEASON",world,false, 2*m_X1_Y1.size()+i+1, FALSE); + } + } + else if (i==0) cout << "No aluminium grid" << endl; + + new G4PVPlacement(G4Transform3D(*Rot,Det_pos), BuildSquareDetector(),"SEASON",world,false,i+1, checkOverlaps); + + } + + + if(m_RotateWheel){ + // + // Build Wheel + G4RotationMatrix zRot; + zRot.rotateZ(TMath::Pi()*rad); + + new G4PVPlacement(G4Transform3D(zRot, G4ThreeVector(0, SEASON_NS::FoilWheelCenterDist, 0)), BuildRotatedWheel(), "Wheel", world, false, 0, checkOverlaps); + + // Build foils in the holes + for ( int i = 0; i < SEASON_NS::FoilNbr; i++ ) + { + new G4PVPlacement(G4Transform3D(G4RotationMatrix(0, 0, 0), G4ThreeVector(TMath::Sin((i+1*0.5)*2*TMath::Pi()/SEASON_NS::FoilNbr + TMath::Pi()) * SEASON_NS::FoilWheelCenterDist, TMath::Cos((i+1*0.5)*2*TMath::Pi() / SEASON_NS::FoilNbr + TMath::Pi()) * SEASON_NS::FoilWheelCenterDist + SEASON_NS::FoilWheelCenterDist, m_FoilThickness * 0.5)), BuildFoil(), "Foil", world, false, 0, checkOverlaps); + } + } + else if(m_EnableWheel){ + // + // Build Wheel + G4RotationMatrix zRot; + zRot.rotateZ(TMath::Pi()*rad); + + new G4PVPlacement(G4Transform3D(zRot, G4ThreeVector(0, SEASON_NS::FoilWheelCenterDist, 0)), BuildWheel(), "Wheel", world, false, 0, checkOverlaps); + + // Build foils in the holes + for ( int i = 0; i < SEASON_NS::FoilNbr; i++ ) + { + new G4PVPlacement(G4Transform3D(G4RotationMatrix(0, 0, 0), G4ThreeVector(TMath::Sin(i*2*TMath::Pi()/SEASON_NS::FoilNbr + TMath::Pi()) * SEASON_NS::FoilWheelCenterDist, TMath::Cos(i*2*TMath::Pi()/SEASON_NS::FoilNbr + TMath::Pi()) * SEASON_NS::FoilWheelCenterDist + SEASON_NS::FoilWheelCenterDist, m_FoilThickness * 0.5)), BuildFoil(), "Foil", world, false, 0, checkOverlaps); + } + } + + if(m_EnableChamber){ + // + // Build Wheel + G4RotationMatrix zRot; + new G4PVPlacement(G4Transform3D(zRot, G4ThreeVector(-70.9*mm,159.05*mm,m_DistDSSD1+SEASON_NS::DistDSSD1_AlWindow)), BuildChamber(), "Chamber", world, false, 0, checkOverlaps); + } +} + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// Add Detector branch to the EventTree. +// Called After DetecorConstruction::AddDetector Method +void SEASON::InitializeRootOutput(){ + RootOutput *pAnalysis = RootOutput::getInstance(); + TTree *pTree = pAnalysis->GetTree(); + if(!pTree->FindBranch("SEASON")){ + pTree->Branch("SEASON", "TSEASONData", &m_Event) ; + } + pTree->SetBranchAddress("SEASON", &m_Event) ; +} + + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +// Read sensitive part and fill the Root tree. +// Called at in the EventAction::EndOfEventAvtion +void SEASON::ReadSensitive(const G4Event* event){ + m_Event->Clear(); + + /////////// + // Strip scorer + DSSDScorers::PS_Images * SiScorer= (DSSDScorers::PS_Images*) m_SEASONScorer->GetPrimitive(0); + map< unsigned int, pair<double,double> > mapFront; + map< unsigned int, unsigned short int> mapRFront; + map< unsigned int, pair<double,double> >::iterator it; + + // X-side reading + for(unsigned int i = 0 ; i < SiScorer->GetFrontMult() ; i++){ + double EnergyX = SiScorer->GetEnergyFront(i); + unsigned int DetNbrX = SiScorer->GetDetectorFront(i); + double TimeX = SiScorer->GetTimeFront(i); + + unsigned int a,r,g,b; + SiScorer->GetARGBFront(i,a,r,g,b); + + if(r==0) + { + mapFront[b+DetNbrX*1e6].first+=EnergyX; + mapFront[b+DetNbrX*1e6].second+=TimeX; + mapRFront[b+DetNbrX*1e6]+=r+i; + } + else{ + double rand = G4UniformRand(); + if (rand > 0.5){ + double energy1 = EnergyX * rand; + double energy2 = EnergyX * (rand-1); + mapFront[b+DetNbrX*1e6].first+=energy1; + mapFront[b+DetNbrX*1e6].second=TimeX; + mapRFront[b+DetNbrX*1e6]+=r+i; + mapFront[g+DetNbrX*1e6].first+=energy2; + mapFront[g+DetNbrX*1e6].second=TimeX; + mapRFront[g+DetNbrX*1e6]+=r+i; + } + else { + double energy1 = - EnergyX * rand; + double energy2 = EnergyX * (1-rand); + mapFront[b+DetNbrX*1e6].first+=energy1; + mapFront[b+DetNbrX*1e6].second=TimeX; + mapRFront[b+DetNbrX*1e6]+=r+i; + mapFront[g+DetNbrX*1e6].first+=energy2; + mapFront[g+DetNbrX*1e6].second=TimeX; + mapRFront[g+DetNbrX*1e6]+=r+i; + } + } + } + + for(it=mapFront.begin();it!=mapFront.end();it++){ + double EnergyX = it->second.first; + if(abs(EnergyX) > m_EnergyThreshold ){ + if(EnergyX>2.) EnergyX = RandGauss::shoot(EnergyX,SEASON_NS::ResoAlpha); + else EnergyX = RandGauss::shoot(EnergyX,SEASON_NS::ResoElectron); + double TimeX = RandGauss::shoot(it->second.second, SEASON_NS::ResoTime); + unsigned int strip = it->first-1000000*(it->first/1000000); + unsigned int det = it->first/1000000; + m_Event->SetXEnergy(det, strip, EnergyX); + m_Event->SetXTime(det, strip, TimeX); + m_Event->SetXParticleID(mapRFront[it->first]); + } + } + + map< unsigned int, pair<double,double> > mapBack; + map< unsigned int, unsigned short int> mapRBack; + // Y-side reading + for(unsigned int i = 0 ; i < SiScorer->GetBackMult() ; i++){ + double EnergyY = SiScorer->GetEnergyBack(i); + unsigned int DetNbrY = SiScorer->GetDetectorBack(i); + double TimeY = SiScorer->GetTimeBack(i); + + unsigned int a,r,g,b; + SiScorer->GetARGBBack(i,a,r,g,b); + + if(r==0){ + mapBack[b+DetNbrY*1e6].first+=EnergyY; + mapBack[b+DetNbrY*1e6].second+=TimeY; + mapRBack[b+DetNbrY*1e6]+=r+i; + } + else{ + double rand = G4UniformRand(); + double energy1 = rand * EnergyY; + double energy2 = (1-rand) * EnergyY; + mapBack[b+DetNbrY*1e6].first+=energy1; + mapBack[b+DetNbrY*1e6].second+=TimeY; + mapRBack[b+DetNbrY*1e6]+=r+i; + mapBack[g+DetNbrY*1e6].first+=energy2; + mapBack[g+DetNbrY*1e6].second+=TimeY; + mapRBack[g+DetNbrY*1e6]+=r+i; + } + } + + for(it=mapBack.begin();it!=mapBack.end();it++){ + double EnergyY = it->second.first; + if(EnergyY > m_EnergyThreshold ){ + if(EnergyY>2.) EnergyY = RandGauss::shoot(EnergyY,SEASON_NS::ResoAlpha); + else EnergyY = RandGauss::shoot(EnergyY,SEASON_NS::ResoElectron); + double TimeY = RandGauss::shoot(it->second.second, SEASON_NS::ResoTime); + unsigned int strip = it->first-1000000*(it->first/1000000); + unsigned int det = it->first/1000000; + m_Event->SetYEnergy(det, strip, EnergyY); + m_Event->SetYTime(det, strip, TimeY); + m_Event->SetYParticleID(mapRBack[it->first]); + } + } + SiScorer->clear(); +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//////////////////////////////////////////////////////////////// +void SEASON::InitializeScorers() { + // This check is necessary in case the geometry is reloaded + bool already_exist = false; + + if(already_exist) + return ; + + m_SEASONScorer = CheckScorer("SEASONScorer",already_exist); + + cout << "Size of scorers :\n"; + cout << SEASON_NS::DetSize << " " << SEASON_NS::DetSize; + cout << " " << SEASON_NS::NumberOfStripsX << " " << SEASON_NS::NumberOfStripsY << "\n"; + + + string nptool = getenv("NPTOOL"); + G4VPrimitiveScorer* Scorer = new DSSDScorers::PS_Images("Scorer", nptool + "/NPLib/Detectors/SEASON/ressources/maskFront.png", nptool + "/NPLib/Detectors/SEASON/ressources/maskBack.png", 0.005, 0.005, 0, 0, 0xffff0000, 0); + + m_SEASONScorer->RegisterPrimitive(Scorer); + + // Interaction scorer + m_SEASONScorer->RegisterPrimitive(new InteractionScorers::PS_Interactions("InteractionScorerSEASON", ms_InterCoord, 0)); + G4SDManager::GetSDMpointer()->AddNewDetector(m_SEASONScorer); +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//////////////////////////////////////////////////////////////////////////////// +// Construct Method to be pass to the DetectorFactory // +//////////////////////////////////////////////////////////////////////////////// +NPS::VDetector* SEASON::Construct(){ + return (NPS::VDetector*) new SEASON(); +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... +//////////////////////////////////////////////////////////////////////////////// +// Registering the construct method to the factory // +//////////////////////////////////////////////////////////////////////////////// +extern"C" { + class proxy_nps_SEASON{ + public: + proxy_nps_SEASON(){ + NPS::DetectorFactory::getInstance()->AddToken("SEASON","SEASON"); + NPS::DetectorFactory::getInstance()->AddDetector("SEASON",SEASON::Construct); + } + }; + + proxy_nps_SEASON p_nps_SEASON; +} diff --git a/NPSimulation/Detectors/SEASON/SEASON.hh b/NPSimulation/Detectors/SEASON/SEASON.hh new file mode 100644 index 0000000000000000000000000000000000000000..d3f1acc2df4de0abdd70f34197ed58ff642fdd69 --- /dev/null +++ b/NPSimulation/Detectors/SEASON/SEASON.hh @@ -0,0 +1,138 @@ +#ifndef SEASON_h +#define SEASON_h 1 +/***************************************************************************** + * Copyright (C) 2009-2023 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: Emmanuel Rey-herme * + * contact address: marine.vandebrouck@cea.fr * + * * + * Creation Date : septembre 2023 * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class describe SEASON simulation * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + *****************************************************************************/ + + // C++ header + #include <string> + #include <vector> + using namespace std; + + // G4 headers + #include "G4ThreeVector.hh" + #include "G4RotationMatrix.hh" + #include "G4LogicalVolume.hh" + #include "G4MultiFunctionalDetector.hh" + + // NPTool header + #include "NPSVDetector.hh" + #include "TSEASONData.h" + #include "NPInputParser.h" + + class SEASON : public NPS::VDetector{ + //////////////////////////////////////////////////// + /////// Default Constructor and Destructor ///////// + //////////////////////////////////////////////////// + public: + SEASON() ; + virtual ~SEASON() ; + + //////////////////////////////////////////////////// + /////// Specific Function of this Class /////////// + //////////////////////////////////////////////////// + public: + // Cartesian + void AddDetector(G4ThreeVector X1_Y1, G4ThreeVector X1_YMax, G4ThreeVector XMax_Y1, G4ThreeVector XMax_YMax); + void AddDetector(double DistDSSD1, double DistTunnel, bool Deloc, bool EnableWheel, bool RotateWheel, bool EnableChamber); + + G4LogicalVolume* BuildSquareDetector(); + G4LogicalVolume* BuildWindow(); + G4LogicalVolume* BuildGrid(); + G4LogicalVolume* BuildWheel(); + G4LogicalVolume* BuildRotatedWheel(); + G4LogicalVolume* BuildChamber(); + G4LogicalVolume* BuildFoil(); + + private: + + //////////////////////////////////////////////////// + ////// Inherite from NPS::VDetector class ///////// + //////////////////////////////////////////////////// + public: + // Read stream at Configfile to pick-up parameters of detector (Position,...) + // Called in DetecorConstruction::ReadDetextorConfiguration Method + void ReadConfiguration(NPL::InputParser) ; + + // Construct detector and inialise sensitive part. + // Called After DetecorConstruction::AddDetector Method + void ConstructDetector(G4LogicalVolume* world) ; + + // Add Detector branch to the EventTree. + // Called After DetecorConstruction::AddDetector Method + void InitializeRootOutput() ; + + // Read sensitive part and fill the Root tree. + // Called at in the EventAction::EndOfEventAvtion + void ReadSensitive(const G4Event* event) ; + + public: // Scorer + // Initialize all Scorer used by the MUST2Array + void InitializeScorers() ; + + // Associated Scorer + G4MultiFunctionalDetector* m_SEASONScorer ; + //////////////////////////////////////////////////// + ///////////Event class to store Data//////////////// + //////////////////////////////////////////////////// + private: + TSEASONData* m_Event ; + + //////////////////////////////////////////////////// + ///////////////Private intern Data////////////////// + //////////////////////////////////////////////////// + private: // Geometry + // Detector Coordinate + vector<G4ThreeVector> m_X1_Y1 ; // Top Left Corner Position Vector + vector<G4ThreeVector> m_X1_YMax ; // Bottom Left Corner Position Vector + vector<G4ThreeVector> m_XMax_Y1 ; // Bottom Right Corner Position Vector?? + vector<G4ThreeVector> m_XMax_YMax ; // Center Corner Position Vector?? + + vector<G4ThreeVector> m_Center; + vector<G4ThreeVector> m_Norm; + vector<double> m_Rotation; + + bool m_EnableWheel; + bool m_RotateWheel; + bool m_EnableChamber; + + double m_DistDSSD1; + double m_DistTunnel; + + double m_FoilRadius; + double m_FoilThickness; + + double m_EnergyThreshold; //0.02*MeV; + + // Visualisation Attribute + G4VisAttributes* m_VisSquare; + G4VisAttributes* m_VisWheel; + G4VisAttributes* m_VisFoil; + G4VisAttributes* m_VisGe; + G4VisAttributes* m_VisWindow; + G4VisAttributes* m_VisGrid; + G4VisAttributes* m_VisChamber; + + // Needed for dynamic loading of the library + public: + static NPS::VDetector* Construct(); + }; + #endif diff --git a/NPSimulation/Detectors/Vendeta/Vendeta.cc b/NPSimulation/Detectors/Vendeta/Vendeta.cc index c0ca4ccc14e5b5ea390c6e4d309dcd66933ebc0b..8390e24192c7edca702b656fc7278cf1dacd5515 100644 --- a/NPSimulation/Detectors/Vendeta/Vendeta.cc +++ b/NPSimulation/Detectors/Vendeta/Vendeta.cc @@ -61,9 +61,10 @@ using namespace CLHEP; namespace Vendeta_NS{ // Energy and time Resolution const double EnergyThreshold = 0.1*MeV; - const double ResoTime = 0.8/2.35*ns ; + const double ResoTime = 0.4/2.35*ns ; const double ResoEnergy = 0.1*MeV ; - const double Thickness = 51.*mm ; + //const double Thickness = 51.*mm ; + const double Thickness = 30.*mm ; const double Radius = 127./2*mm ; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc b/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc index 4b5059ff9c5e4c356414033a363abcf1be9dd75a..c6d56afc903394e191dec0e79b28074dda811b82 100644 --- a/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc +++ b/NPSimulation/EventGenerator/EventGeneratorIsotropic.cc @@ -98,6 +98,7 @@ void EventGeneratorIsotropic::ReadConfiguration(NPL::InputParser parser){ else if(particleName[j]=="mu+") { it->m_particleName.push_back("mu+") ;} else if(particleName[j]=="mu-") { it->m_particleName.push_back("mu-") ;} else if(particleName[j]=="neutron") {it->m_particleName.push_back("neutron") ;} + else if(particleName[j]=="electron" || particleName[j]=="e-") {it->m_particleName.push_back("e-");} else it->m_particleName.push_back(particleName[j]); } @@ -143,7 +144,7 @@ void EventGeneratorIsotropic::GenerateEvent(G4Event*){ par.m_particle=NULL; if(par.m_particle==NULL){ - if(par.m_particleName[p]=="gamma" || par.m_particleName[p]=="neutron" || par.m_particleName[p]=="opticalphoton" || par.m_particleName[p]=="mu+" || par.m_particleName[p]=="mu-"){ + if(par.m_particleName[p]=="gamma" || par.m_particleName[p]=="neutron" || par.m_particleName[p]=="opticalphoton" || par.m_particleName[p]=="mu+" || par.m_particleName[p]=="mu-" || par.m_particleName[p]=="e-"){ par.m_particle = G4ParticleTable::GetParticleTable()->FindParticle(par.m_particleName[p].c_str()); } else{ diff --git a/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.cc b/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.cc index e2e561c2ccada3ef88bbcdf868e8edaa51b6cb11..b906069387357d26827a8cf2492d1a584975560d 100644 --- a/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.cc +++ b/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.cc @@ -51,6 +51,8 @@ EventGeneratorMultipleParticle::EventGeneratorMultipleParticle(){ m_SigmaX = 0; m_SigmaY = 0; m_Events = 0; + m_HalfOpenAngleMax = 0; + m_HalfOpenAngleMin = 0; m_File = ""; m_particleName.clear(); m_ParticleStack = ParticleStack::getInstance(); @@ -75,11 +77,12 @@ void EventGeneratorMultipleParticle::ReadConfiguration(NPL::InputParser parser){ if(NPOptionManager::getInstance()->GetVerboseLevel()) cout << endl << "\033[1;35m//// MultipleParticle token found " << endl; - vector<string> token = {"x0", "y0", "z0", "SigmaX", "SigmaY","Events","EventFile"}; + vector<string> token = {"x0", "y0", "z0", "SigmaX", "SigmaY","Events","EventFile","HalfOpenAngleMin","HalfOpenAngleMax"}; + vector<string> Isotropic = {"x0", "y0", "z0", "SigmaX", "SigmaY","Events","EventFile","HalfOpenAngleMin","HalfOpenAngleMax"}; for(unsigned int i = 0 ; i < blocks.size() ; i++){ blocks[i]->Dump(); - if(blocks[i]->HasTokenList(token)){ + if(blocks[i]->HasTokenList(Isotropic)){ m_x0 = blocks[i]->GetDouble("x0","mm"); m_y0 = blocks[i]->GetDouble("y0","mm"); m_z0 = blocks[i]->GetDouble("z0","mm"); @@ -88,8 +91,19 @@ void EventGeneratorMultipleParticle::ReadConfiguration(NPL::InputParser parser){ m_Events = blocks[i]->GetInt("Events"); m_FileName = blocks[i]->GetString("EventFile"); m_File += m_FileName; + m_HalfOpenAngleMin = blocks[i]->GetDouble("HalfOpenAngleMin","deg"); + m_HalfOpenAngleMax = blocks[i]->GetDouble("HalfOpenAngleMax","deg"); } - + else if(blocks[i]->HasTokenList(token)){ + m_x0 = blocks[i]->GetDouble("x0","mm"); + m_y0 = blocks[i]->GetDouble("y0","mm"); + m_z0 = blocks[i]->GetDouble("z0","mm"); + m_SigmaX = blocks[i]->GetDouble("SigmaX","mm"); + m_SigmaY = blocks[i]->GetDouble("SigmaY","mm"); + m_Events = blocks[i]->GetInt("Events"); + m_FileName = blocks[i]->GetString("EventFile"); + m_File += m_FileName; + } else{ cout << "ERROR: check your input file formatting \033[0m" << endl; exit(1); @@ -120,6 +134,7 @@ void EventGeneratorMultipleParticle::ReadConfiguration(NPL::InputParser parser){ else if(sParticle=="gamma") { vParticle.push_back("gamma") ;} else if(sParticle=="mu+") { vParticle.push_back("mu+") ;} else if(sParticle=="neutron") {vParticle.push_back("neutron") ;} + else if(sParticle=="electron"||sParticle=="e-") {vParticle.push_back("e-") ;} else vParticle.push_back(sParticle); vEnergy.push_back(dEnergy); @@ -155,7 +170,7 @@ void EventGeneratorMultipleParticle::GenerateEvent(G4Event* evt){ for(int i=0; i<m_Multiplicity[evtID]; i++){ m_particle=NULL; if(m_particle==NULL){ - if(m_particleName[evtID][i]=="gamma" || m_particleName[evtID][i]=="neutron" || m_particleName[evtID][i]=="opticalphoton" || m_particleName[evtID][i]=="mu+"){ + if(m_particleName[evtID][i]=="gamma" || m_particleName[evtID][i]=="neutron" || m_particleName[evtID][i]=="opticalphoton" || m_particleName[evtID][i]=="mu+" || m_particleName[evtID][i]=="e-"){ m_particle = G4ParticleTable::GetParticleTable()->FindParticle(m_particleName[evtID][i].c_str()); } else{ @@ -165,11 +180,21 @@ void EventGeneratorMultipleParticle::GenerateEvent(G4Event* evt){ } } - G4double theta = m_Theta[evtID][i]; + G4double theta = 0; + if(m_HalfOpenAngleMin==0 && m_HalfOpenAngleMax==0){ + theta = m_Theta[evtID][i]; + theta = theta*deg; + } + else{ + G4double cos_theta_min = cos(m_HalfOpenAngleMin); + G4double cos_theta_max = cos(m_HalfOpenAngleMax); + G4double cos_theta = cos_theta_min + (cos_theta_max - cos_theta_min) * RandFlat::shoot(); + theta = acos(cos_theta); + } G4double particle_energy = m_Energy[evtID][i]; G4double phi = RandFlat::shoot() * 2 * pi; - theta = theta*deg; + particle_energy = particle_energy / MeV; // Direction of particle, energy and laboratory angle diff --git a/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.hh b/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.hh index 8e45f4b7623e12103a221d2814542742f0a25f53..045da37703802dc220ec75cb81c0bd215004dca4 100644 --- a/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.hh +++ b/NPSimulation/EventGenerator/EventGeneratorMultipleParticle.hh @@ -55,6 +55,8 @@ private: // Source parameter from input file G4double m_z0 ; // Vertex Position Z G4double m_SigmaX ; G4double m_SigmaY ; + G4double m_HalfOpenAngleMin ; // Min Half open angle of the source + G4double m_HalfOpenAngleMax ; // Max Half open angle of the source unsigned int m_Events; string m_FileName; string m_File; diff --git a/Projects/E805/Analysis.cxx b/Projects/E805/Analysis.cxx index 55101907085f36b11a3ed63dcc51b4ece6b091de..db34beabf4293a75347e9eae6b2b1c801722c178 100755 --- a/Projects/E805/Analysis.cxx +++ b/Projects/E805/Analysis.cxx @@ -35,7 +35,8 @@ Analysis::~Analysis(){ void Analysis::Init(){ InitInputBranch(); InitOutputBranch(); - CATS = (TCATSPhysics*) m_DetectorManager -> GetDetector("CATSDetector"); + //CATS = (TCATSPhysics*) m_DetectorManager -> GetDetector("CATSDetector"); + M2 = (TMust2Physics*) m_DetectorManager -> GetDetector("M2Telescope"); reaction->ReadConfigurationFile(NPOptionManager::getInstance()->GetReactionFile()); OriginalBeamEnergy = reaction->GetBeamEnergy(); @@ -58,11 +59,11 @@ void Analysis::Init(){ bool Analysis::UnallocateBeforeBuild(){ //std::cout << "test unallocate" << std::endl; - //GATCONFMASTER = **GATCONFMASTER_; - //return (GATCONFMASTER > 0); + GATCONFMASTER = **GATCONFMASTER_; + return (GATCONFMASTER > 0); //DATATRIG_CATS = **DATATRIG_CATS_; //return (DATATRIG_CATS > 0); - return true; + //return true; } bool Analysis::FillOutputCondition(){ @@ -72,12 +73,37 @@ bool Analysis::FillOutputCondition(){ //////////////////////////////////////////////////////////////////////////////// void Analysis::TreatEvent(){ + + ReInit(); + + //for(unsigned int countMust2 = 0 ; countMust2 < M2->Si_E.size() ; countMust2++){ + //Si_E_M2 = M2->Si_E[countMust2]; + //CsI_E_M2 = M2->CsI_E[countMust2]; + //ThetaM2Surface = 0; + // if(Si_E_M2 > 0 && CsI_E_M2 > 8192){ + // //double EfromdeltaE = ProtonSi.EvaluateEnergyFromDeltaE( + // // Si_E_M2, 300*um, ThetaM2Surface, 6.0 * MeV, 300.0 * MeV, + // // 0.001 * MeV, 10000); + // double EfromdeltaE = (CsI_E_M2-8192)*0.1; + // M2_ECsI_from_deltaE.push_back(EfromdeltaE); + // if(EfromdeltaE > 0){ + // Beta_light = sqrt(1./(1.+1./(pow(EfromdeltaE/911. + 1,2)-1))); + // Beta_from_deltaE.push_back(Beta_light); + // if(Beta_light>0){ + // double Beth = log(2*511.*Beta_light*Beta_light/(0.174*(1-Beta_light*Beta_light))) - Beta_light*Beta_light; + // Beth_from_deltaE.push_back(Beth); + // } + // } + // } + //} } void Analysis::InitOutputBranch() { - std::cout << "Test output branch /////////////////////////////////////////////////////////////////////////////////////////////" << std::endl; + RootOutput::getInstance()->GetTree()->Branch("M2_ECsI_from_deltaE",&M2_ECsI_from_deltaE); + RootOutput::getInstance()->GetTree()->Branch("Beta_from_deltaE",&Beta_from_deltaE); + RootOutput::getInstance()->GetTree()->Branch("Beth_from_deltaE",&Beth_from_deltaE); } void Analysis::UnallocateVariables(){ @@ -85,12 +111,15 @@ void Analysis::UnallocateVariables(){ void Analysis::InitInputBranch(){ TTreeReader* inputTreeReader = RootInput::getInstance()->GetTreeReader(); + GATCONFMASTER_ = new TTreeReaderValue<unsigned short>(*inputTreeReader,"GATCONFMASTER"); //DATATRIG_CATS_ = new TTreeReaderValue<unsigned short>(*inputTreeReader,"DATATRIG_CATS"); } //////////////////////////////////////////////////////////////////////////////// void Analysis::ReInit(){ - + //M2_ECsI_from_deltaE.clear(); + //Beta_from_deltaE.clear(); + //Beth_from_deltaE.clear(); } //////////////////////////////////////////////////////////////////////////////// diff --git a/Projects/E805/Analysis.h b/Projects/E805/Analysis.h index 8f7a48f68a28e1d5262ebcb5807cb6a2aa5c5859..4ad3a6d6289db1ee3849f935fc18eed262fc4a32 100755 --- a/Projects/E805/Analysis.h +++ b/Projects/E805/Analysis.h @@ -99,6 +99,8 @@ class Analysis: public NPL::VAnalysis{ std::vector<double> M2_Z; std::vector<double> M2_dE; std::vector<double> M2_ECsI_from_deltaE ; + std::vector<double> Beta_from_deltaE; + std::vector<double> Beth_from_deltaE; double OriginalBeamEnergy ; // AMEV double FinalBeamEnergy; @@ -244,6 +246,7 @@ class Analysis: public NPL::VAnalysis{ double ThetaGDSurface ; double Beta; + double Beta_light; double Gamma; double Velocity; diff --git a/Projects/E805/CalibrationAphaTest.txt b/Projects/E805/CalibrationAphaTest.txt new file mode 100644 index 0000000000000000000000000000000000000000..e152e0f0fce629547b7fb4c0e482119aa0e820a8 --- /dev/null +++ b/Projects/E805/CalibrationAphaTest.txt @@ -0,0 +1,12 @@ +CalibrationFilePath + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_X_E_MM1.cal + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_X_E_MM2.cal + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_X_E_MM3.cal + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_X_E_MM4.cal + + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_Y_E_MM1.cal + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_Y_E_MM2.cal + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_Y_E_MM3.cal + ./data/NPRoot/Calibration/CalAlpha_r0388_06+/Cal_Str_Y_E_MM4.cal + + \ No newline at end of file diff --git a/Projects/E805/DetectorConfiguration/CATS_MCR.detector b/Projects/E805/DetectorConfiguration/CATS_MCR.detector new file mode 100644 index 0000000000000000000000000000000000000000..1b6451b0efd96bb71e808750e56b208b9c0eb1fd --- /dev/null +++ b/Projects/E805/DetectorConfiguration/CATS_MCR.detector @@ -0,0 +1,31 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 3.2 micrometer + ANGLE= 0 deg + RADIUS= 10 mm + MATERIAL= CH2 + X= 0 mm + Y= 0 mm + Z= 0 mm + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +CATSDetector + CATSNumber = 1 + X1_Y1= 43.16 -42.26 -1587.1 mm + X28_Y1= -27.96 -42.26 -1587.1 mm + X1_Y28= 43.16 28.86 -1587.1 mm + X28_Y28= -27.96 28.86 -1587.1 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +CATSDetector + CATSNumber = 2 + X1_Y1= 33.66 -37.06 -1090.1 mm + X28_Y1= -37.46 -37.06 -1090.1 mm + X1_Y28= 33.66 34.06 -1090.1 mm + X28_Y28= -37.46 34.06 -1090.1 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +MASK + MaskNumber = 1 + Z = -1732.1 +MASK + MaskNumber = 2 + Z = -1235.1 \ No newline at end of file diff --git a/Projects/E805/DetectorConfiguration/CATS_test.detector b/Projects/E805/DetectorConfiguration/CATS_test.detector new file mode 100644 index 0000000000000000000000000000000000000000..ace2e859a35e5cd283b722dcae965ecf7328ec2e --- /dev/null +++ b/Projects/E805/DetectorConfiguration/CATS_test.detector @@ -0,0 +1,25 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 3.2 micrometer + ANGLE= 0 deg + RADIUS= 10 mm + MATERIAL= CH2 + X= 0 mm + Y= 0 mm + Z= 0 mm + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +CATSDetector + CATSNumber = 1 + X1_Y1= 43.34 -42.31 -1587.1 mm + X28_Y1= -27.28 -42.31 -1587.1 mm + X1_Y28= 43.34 28.81 -1587.1 mm + X28_Y28= -27.78 28.81 -1587.1 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +CATSDetector + CATSNumber = 2 + X1_Y1= 33.64 -37.88 -1090.1 mm + X28_Y1= -37.48 -37.88 -1090.1 mm + X1_Y28= 33.64 33.24 -1090.1 mm + X28_Y28= -37.48 33.24 -1090.1 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/Projects/E805/DetectorConfiguration/CATS_test_uncal.detector b/Projects/E805/DetectorConfiguration/CATS_test_uncal.detector new file mode 100644 index 0000000000000000000000000000000000000000..0a901ab69b8000e44ba049697fccdf78002ca987 --- /dev/null +++ b/Projects/E805/DetectorConfiguration/CATS_test_uncal.detector @@ -0,0 +1,25 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 3.2 micrometer + ANGLE= 0 deg + RADIUS= 10 mm + MATERIAL= CH2 + X= 0 mm + Y= 0 mm + Z= 0 mm + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +CATSDetector + CATSNumber = 1 + X1_Y1= 35.56 -35.56 -1587.1 mm + X28_Y1= -35.56 -35.56 -1587.1 mm + X1_Y28= 35.56 35.56 -1587.1 mm + X28_Y28= -35.56 35.56 -1587.1 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +CATSDetector + CATSNumber = 2 + X1_Y1= 35.56 -35.56 -1090.1 mm + X28_Y1= -35.56 -35.56 -1090.1 mm + X1_Y28= 35.56 35.56 -1090.1 mm + X28_Y28= -35.56 35.56 -1090.1 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/Projects/E805/DetectorConfiguration/MUST2_E805.detector b/Projects/E805/DetectorConfiguration/MUST2_E805.detector new file mode 100644 index 0000000000000000000000000000000000000000..f00244eb4e88840bc54404c4a90b6580a62b8678 --- /dev/null +++ b/Projects/E805/DetectorConfiguration/MUST2_E805.detector @@ -0,0 +1,53 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 53.5 micrometer + ANGLE= 0 deg + RADIUS= 15 mm + MATERIAL= CH2 + ANGLE= 0 deg + X= 0 mm + Y= 0 mm + Z= 10 mm +%%%%%%% Telescope 1 %%%%%%% +M2Telescope + X1_Y1= -13.57 -104.78 299.83 mm + X1_Y128= -25.1 -12.62 328.63 mm + X128_Y1= -104.01 -104.85 263.88 mm + X128_Y128= -115.53 -12.71 292.67 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all +%%%%%%% Telescope 2 %%%%%%% +M2Telescope + X1_Y1= -114.9 9.68 291.84 mm + X1_Y128= -24.56 9.8 327.88 mm + X128_Y1= -103.58 101.8 262.73 mm + X128_Y128= -13.24 102.09 298.75 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all + +%%%%%%% Telescope 3 %%%%%%% +M2Telescope + X1_Y1= 11.84 101.72 299.05 mm + X1_Y128= 23.44 9.68 328.38 mm + X128_Y1= 102.16 101.57 263.01 mm + X128_Y128= 113.81 9.57 292.3 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all + + +%%%%%%% Telescope 4 %%%%%%% +M2Telescope + X1_Y1= 113.56 -13.18 292.11 mm + X1_Y128= 23.23 -13.37 328.15 mm + X128_Y1= 102.39 -105.49 263.59 mm + X128_Y128= 12.04 -105.69 299.63 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all diff --git a/Projects/E805/DetectorConfiguration/MUST_source.detector b/Projects/E805/DetectorConfiguration/MUST_source.detector new file mode 100644 index 0000000000000000000000000000000000000000..a7460262b419337901a295972cb911eb98996992 --- /dev/null +++ b/Projects/E805/DetectorConfiguration/MUST_source.detector @@ -0,0 +1,46 @@ +%%%%%%% Telescope 1 %%%%%%% +M2Telescope + X1_Y1= 11.84 101.72 299.05 mm + X1_Y128= 23.44 9.68 328.38 mm + X128_Y1= 102.16 101.57 263.01 mm + X128_Y128= 113.81 9.57 292.3 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all + +%%%%%%% Telescope 2 %%%%%%% +M2Telescope + X1_Y1= -114.9 9.68 291.84 mm + X1_Y128= -24.56 9.8 327.88 mm + X128_Y1= -103.58 101.8 262.73 mm + X128_Y128= -13.24 102.09 298.75 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all + + +%%%%%%% Telescope 3 %%%%%%% +M2Telescope + X1_Y1= -13.57 -104.78 299.83 mm + X1_Y128= -25.1 -12.62 328.63 mm + X128_Y1= -104.01 -104.85 263.88 mm + X128_Y128= -115.53 -12.71 292.67 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all + + + +%%%%%%% Telescope 4 %%%%%%% +M2Telescope + X1_Y1= 113.56 -13.18 292.11 mm + X1_Y128= 23.23 -13.37 328.15 mm + X128_Y1= 102.39 -105.49 263.59 mm + X128_Y128= 12.04 -105.69 299.63 mm + SI= 1 + SILI= 0 + CSI= 1 + VIS= all diff --git a/Projects/E805/DoCalibration/CalibrationAlpha.do b/Projects/E805/DoCalibration/CalibrationAlpha.do new file mode 100644 index 0000000000000000000000000000000000000000..d3364d79672ce66be8b06d7692bcd8c15238922e --- /dev/null +++ b/Projects/E805/DoCalibration/CalibrationAlpha.do @@ -0,0 +1,51 @@ +%%%%%%% Telescope 1 %%%%%%% +M2Telescope + TelescopeNumber= 1 + Time= 0 + Energy= 1 + CSI= 0 + +EnergyCalibrationParameters + TelescopeNumber= 1 + XThreshold= 8600 + YThreshold= 7800 + AlphaFitType= NoSatellite + +%%%%%%% Telescope 2 %%%%%%% +M2Telescope + TelescopeNumber= 2 + Time= 0 + Energy= 1 + CSI= 0 + +EnergyCalibrationParameters + TelescopeNumber= 2 + XThreshold= 8600 + YThreshold= 7800 + AlphaFitType= NoSatellite + +%%%%%%% Telescope 3 %%%%%%% +M2Telescope + TelescopeNumber= 3 + Time= 0 + Energy= 1 + CSI= 0 + +EnergyCalibrationParameters + TelescopeNumber= 3 + XThreshold= 8600 + YThreshold= 7800 + AlphaFitType= NoSatellite + +%%%%%%% Telescope 4 %%%%%%% +M2Telescope + TelescopeNumber= 4 + Time= 0 + Energy= 1 + CSI= 0 + +EnergyCalibrationParameters + TelescopeNumber= 4 + XThreshold= 8600 + YThreshold= 7800 + AlphaFitType= NoSatellite \ No newline at end of file diff --git a/Projects/E805/DoCalibration/CalibrationCSI.do b/Projects/E805/DoCalibration/CalibrationCSI.do new file mode 100644 index 0000000000000000000000000000000000000000..d9e78e8e172882e952ee7d0a21ae3939fdf923f9 --- /dev/null +++ b/Projects/E805/DoCalibration/CalibrationCSI.do @@ -0,0 +1,51 @@ +%%%%%%% Telescope 1 %%%%%%% +M2Telescope + TelescopeNumber= 1 + Time= 0 + Energy= 0 + CSI= 1 + +CSICalibrationParameters + TelescopeNumber= 1 + CsIEnergyXThreshold= 8212 + CsIEnergyYThreshold= 8172 + CSIEThreshold= 8192 + +%%%%%%% Telescope 2 %%%%%%% +M2Telescope + TelescopeNumber= 2 + Time= 0 + Energy= 0 + CSI= 1 + +CSICalibrationParameters + TelescopeNumber= 2 + CsIEnergyXThreshold= 8212 + CsIEnergyYThreshold= 8172 + CSIEThreshold= 8192 + +%%%%%%% Telescope 3 %%%%%%% +M2Telescope + TelescopeNumber= 3 + Time= 0 + Energy= 0 + CSI= 1 + +CSICalibrationParameters + TelescopeNumber= 3 + CsIEnergyXThreshold= 8212 + CsIEnergyYThreshold= 8172 + CSIEThreshold= 8192 + +%%%%%%% Telescope 4 %%%%%%% +M2Telescope + TelescopeNumber= 4 + Time= 0 + Energy= 0 + CSI= 1 + +CSICalibrationParameters + TelescopeNumber= 4 + CsIEnergyXThreshold= 8212 + CsIEnergyYThreshold= 8172 + CSIEThreshold= 8192 diff --git a/Projects/E805/configs/ConfigMust2.dat b/Projects/E805/configs/ConfigMust2.dat index d309ad0c4d8a28a18d031d9e68a3b6c1895a929f..4e4f4dce69640bbf5f17521fd64daec0fbeab842 100644 --- a/Projects/E805/configs/ConfigMust2.dat +++ b/Projects/E805/configs/ConfigMust2.dat @@ -1,5 +1,69 @@ ConfigMust2 - CSI_SIZE 150 - MAX_STRIP_MULTIPLICITY 1 - SI_X_E_RAW_THRESHOLD 8192 - SI_Y_E_RAW_THRESHOLD 8192 + CSI_SIZE 50 + MAX_STRIP_MULTIPLICITY 100 + SI_X_E_RAW_THRESHOLD 8202 + SI_Y_E_RAW_THRESHOLD 8182 + STRIP_ENERGY_MATCHING_NUMBER_OF_SIGMA 1 + STRIP_ENERGY_MATCHING_SIGMA 0.1 + DISABLE_CHANNEL MM1STRX1 + DISABLE_CHANNEL MM1STRX2 + DISABLE_CHANNEL MM1STRX7 + DISABLE_CHANNEL MM1STRX8 + DISABLE_CHANNEL MM1STRX9 + DISABLE_CHANNEL MM1STRX10 + DISABLE_CHANNEL MM1STRX82 + DISABLE_CHANNEL MM1STRX83 + DISABLE_CHANNEL MM1STRX84 + DISABLE_CHANNEL MM1STRX127 + DISABLE_CHANNEL MM1STRX128 + + DISABLE_CHANNEL MM2STRX13 + DISABLE_CHANNEL MM2STRX14 + DISABLE_CHANNEL MM2STRX15 + DISABLE_CHANNEL MM2STRX16 + DISABLE_CHANNEL MM2STRX17 + + DISABLE_CHANNEL MM3STRX2 + DISABLE_CHANNEL MM3STRX3 + DISABLE_CHANNEL MM3STRX4 + DISABLE_CHANNEL MM3STRX44 + DISABLE_CHANNEL MM3STRX45 + DISABLE_CHANNEL MM3STRX46 + DISABLE_CHANNEL MM3STRX47 + DISABLE_CHANNEL MM3STRX48 + DISABLE_CHANNEL MM3STRX49 + + DISABLE_CHANNEL MM4STRX4 + DISABLE_CHANNEL MM4STRX5 + DISABLE_CHANNEL MM4STRX6 + + DISABLE_CHANNEL MM1STRY28 + DISABLE_CHANNEL MM1STRY29 + DISABLE_CHANNEL MM1STRY30 + DISABLE_CHANNEL MM1STRY99 + DISABLE_CHANNEL MM1STRY100 + DISABLE_CHANNEL MM1STRY101 + DISABLE_CHANNEL MM1STRY125 + DISABLE_CHANNEL MM1STRY126 + DISABLE_CHANNEL MM1STRY127 + + DISABLE_CHANNEL MM2STRY24 + DISABLE_CHANNEL MM2STRY25 + DISABLE_CHANNEL MM2STRY26 + DISABLE_CHANNEL MM2STRY85 + DISABLE_CHANNEL MM2STRY86 + DISABLE_CHANNEL MM2STRY87 + DISABLE_CHANNEL MM2STRY122 + DISABLE_CHANNEL MM2STRY123 + DISABLE_CHANNEL MM2STRY124 + + DISABLE_CHANNEL MM3STRY118 + DISABLE_CHANNEL MM3STRY119 + DISABLE_CHANNEL MM3STRY120 + DISABLE_CHANNEL MM3STRY122 + DISABLE_CHANNEL MM3STRY123 + DISABLE_CHANNEL MM3STRY124 + + DISABLE_CHANNEL MM4STRY1 + DISABLE_CHANNEL MM4STRY2 + DISABLE_CHANNEL MM4STRY3 diff --git a/Projects/E805/project.config b/Projects/E805/project.config new file mode 100644 index 0000000000000000000000000000000000000000..e7d7ae93f84611521fd60633b734e74b87245043 --- /dev/null +++ b/Projects/E805/project.config @@ -0,0 +1,7 @@ +Project E805 + AnalysisOutput= ./data/NPRoot/Analysis/ + SimulationOutput= ./data/NPRoot/Simulation/ + EnergyLoss= ../../Inputs/EnergyLoss/ + CalibrationOutput= ./data/NPRoot/Calibration/ + + diff --git a/Projects/Inelastic/238Uel.reaction b/Projects/Inelastic/238Uel.reaction deleted file mode 100644 index 8bb56b1d059533b59fd99eeb4baf60005abe2aaa..0000000000000000000000000000000000000000 --- a/Projects/Inelastic/238Uel.reaction +++ /dev/null @@ -1,28 +0,0 @@ -Beam - Particle= n - Energy= 2.1 - SigmaEnergy= 0.010 - SigmaThetaX= 0. - SigmaPhiY= 0. - SigmaX= 10 mm - SigmaY= 10 mm - MeanThetaX= 0 - MeanPhiY= 0 - MeanX= 0 - MeanY= 0 - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -TwoBodyReaction - Beam= n - Target= 238U - Light= n - Heavy= 238U - ExcitationEnergyLight= 0.0 - ExcitationEnergyHeavy= 0.0 - CrossSectionPath= flat.txt CS - ShootLight= 1 - ShootHeavy= 1 - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - diff --git a/Projects/Inelastic/Geometry/GenerateGeometry.C b/Projects/Inelastic/Geometry/GenerateGeometry.C index 49a31993415710c40a2588050aba4864bce8bade..6f077893897338e0b905f2d621138de0aebacb48 100644 --- a/Projects/Inelastic/Geometry/GenerateGeometry.C +++ b/Projects/Inelastic/Geometry/GenerateGeometry.C @@ -20,9 +20,9 @@ void GenerateGeometry() double Theta = 20; double Phi[6] = {0, 20, 40, 140, 160, 180}; for(int p=0; p<6; p++){ - if(p%2==0) Theta = 20; - else Theta = 15; - cout << p << " " << Theta << endl; + //if(p%2==0) Theta = 20; + //else Theta = 17.5; + Theta = 20; for(int i = 0; i <15; i++){ ofile << "\%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" << endl; ofile << "Vendeta" << endl; diff --git a/Projects/Inelastic/RunToTreat.txt b/Projects/Inelastic/RunToTreat.txt index d1ac9e045b470346e5cc1e4ba58670e7ff74a5b4..2a165eaafa002675ea5d8bfb5f9f9b6ca95de8dc 100644 --- a/Projects/Inelastic/RunToTreat.txt +++ b/Projects/Inelastic/RunToTreat.txt @@ -2,3 +2,4 @@ TTreeName SimulatedTree RootFileName ../../Outputs/Simulation/vendeta_el_*.root + ../../Outputs/Simulation/vendeta_1st_inel_*.root diff --git a/Projects/Inelastic/Vendeta_inelastic.detector b/Projects/Inelastic/Vendeta_inelastic.detector index 777bad378275b19c72f7b11de4c6a9f665d8473a..a28b4cb0c31fd35cfaf40d48dfee78b0ce984a6e 100644 --- a/Projects/Inelastic/Vendeta_inelastic.detector +++ b/Projects/Inelastic/Vendeta_inelastic.detector @@ -85,77 +85,77 @@ Vendeta %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 15 deg + THETA= 20 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 25 deg + THETA= 30 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 35 deg + THETA= 40 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 45 deg + THETA= 50 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 55 deg + THETA= 60 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 65 deg + THETA= 70 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 75 deg + THETA= 80 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 85 deg + THETA= 90 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 95 deg + THETA= 100 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 105 deg + THETA= 110 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 115 deg + THETA= 120 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 125 deg + THETA= 130 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 135 deg + THETA= 140 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 145 deg + THETA= 150 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 155 deg + THETA= 160 deg PHI= 20 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta @@ -235,77 +235,77 @@ Vendeta %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 15 deg + THETA= 20 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 25 deg + THETA= 30 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 35 deg + THETA= 40 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 45 deg + THETA= 50 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 55 deg + THETA= 60 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 65 deg + THETA= 70 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 75 deg + THETA= 80 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 85 deg + THETA= 90 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 95 deg + THETA= 100 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 105 deg + THETA= 110 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 115 deg + THETA= 120 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 125 deg + THETA= 130 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 135 deg + THETA= 140 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 145 deg + THETA= 150 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 155 deg + THETA= 160 deg PHI= 140 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta @@ -385,75 +385,75 @@ Vendeta %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 15 deg + THETA= 20 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 25 deg + THETA= 30 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 35 deg + THETA= 40 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 45 deg + THETA= 50 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 55 deg + THETA= 60 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 65 deg + THETA= 70 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 75 deg + THETA= 80 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 85 deg + THETA= 90 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 95 deg + THETA= 100 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 105 deg + THETA= 110 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 115 deg + THETA= 120 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 125 deg + THETA= 130 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 135 deg + THETA= 140 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 145 deg + THETA= 150 deg PHI= 180 deg %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Vendeta R= 2500 mm - THETA= 155 deg + THETA= 160 deg PHI= 180 deg diff --git a/Projects/Inelastic/run.mac b/Projects/Inelastic/run.mac index 506556ed2882f22f4f6013ba592297aba63dec25..5b6fb5e93e5dc40199b828e86d751847abfda4fd 100644 --- a/Projects/Inelastic/run.mac +++ b/Projects/Inelastic/run.mac @@ -1 +1 @@ -/run/beamOn 100000 +/run/beamOn 500000 diff --git a/Projects/Inelastic/sim.sh b/Projects/Inelastic/sim.sh index 9fc763e80f426cd97d338787190ca3a183ce1cda..131ec5d9b9fb4ad6935ed00cc22fbe4b8bc4508d 100755 --- a/Projects/Inelastic/sim.sh +++ b/Projects/Inelastic/sim.sh @@ -2,6 +2,11 @@ for i in {1..10} do - npsimulation -D Vendeta_inelastic.detector -E 238Uel.reaction --random-seed $i -O vendeta_el_$i -B run.mac & + npsimulation -D Vendeta_inelastic.detector -E 238U_el.reaction --random-seed $i -O vendeta_el_$i -B run.mac & +done + +for i in {1..10} +do + npsimulation -D Vendeta_inelastic.detector -E 238U_1st_inel.reaction --random-seed $i -O vendeta_1st_inel_$i -B run_1st.mac & done diff --git a/Projects/SEASON/Analysis.cxx b/Projects/SEASON/Analysis.cxx new file mode 100644 index 0000000000000000000000000000000000000000..e2f4664316cc445b89841afa912869704eeda2b6 --- /dev/null +++ b/Projects/SEASON/Analysis.cxx @@ -0,0 +1,68 @@ +/***************************************************************************** + * Copyright (C) 2009-2016 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: XAUTHORX contact address: XMAILX * + * * + * Creation Date : XMONTHX XYEARX * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class describe SEASON_Box analysis project * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + *****************************************************************************/ + +#include<iostream> +using namespace std; +#include"Analysis.h" +#include"NPAnalysisFactory.h" +#include"NPDetectorManager.h" +//////////////////////////////////////////////////////////////////////////////// +Analysis::Analysis(){ +} +//////////////////////////////////////////////////////////////////////////////// +Analysis::~Analysis(){ +} + +//////////////////////////////////////////////////////////////////////////////// +void Analysis::Init(){ + SEASON_Box= (TSEASON_BoxPhysicsPhysics*) m_DetectorManager->GetDetector("SEASON_Box"); +} + +//////////////////////////////////////////////////////////////////////////////// +void Analysis::TreatEvent(){ +} + +//////////////////////////////////////////////////////////////////////////////// +void Analysis::End(){ +} + + +//////////////////////////////////////////////////////////////////////////////// +// Construct Method to be pass to the DetectorFactory // +//////////////////////////////////////////////////////////////////////////////// +NPL::VAnalysis* Analysis::Construct(){ + return (NPL::VAnalysis*) new Analysis(); +} + +//////////////////////////////////////////////////////////////////////////////// +// Registering the construct method to the factory // +//////////////////////////////////////////////////////////////////////////////// +extern "C"{ +class proxy{ + public: + proxy(){ + NPL::AnalysisFactory::getInstance()->SetConstructor(Analysis::Construct); + } +}; + +proxy p; +} + diff --git a/Projects/SEASON/Analysis.h b/Projects/SEASON/Analysis.h new file mode 100644 index 0000000000000000000000000000000000000000..39900c4f826df07ea29bc2ca6058116aca5382a8 --- /dev/null +++ b/Projects/SEASON/Analysis.h @@ -0,0 +1,42 @@ +#ifndef Analysis_h +#define Analysis_h +/***************************************************************************** + * Copyright (C) 2009-2016 this file is part of the NPTool Project * + * * + * For the licensing terms see $NPTOOL/Licence/NPTool_Licence * + * For the list of contributors see $NPTOOL/Licence/Contributors * + *****************************************************************************/ + +/***************************************************************************** + * Original Author: XAUTHORX contact address: XMAILX * + * * + * Creation Date : XMONTHX XYEARX * + * Last update : * + *---------------------------------------------------------------------------* + * Decription: * + * This class describe SEASON_Box analysis project * + * * + *---------------------------------------------------------------------------* + * Comment: * + * * + *****************************************************************************/ + +#include"NPVAnalysis.h" +#include"TSEASON_BoxPhysics.h" +class Analysis: public NPL::VAnalysis{ + public: + Analysis(); + ~Analysis(); + + public: + void Init(); + void TreatEvent(); + void End(); + + static NPL::VAnalysis* Construct(); + + private: + TSEASON_BoxPhysics* SEASON_Box; + +}; +#endif diff --git a/Projects/SEASON/CMakeLists.txt b/Projects/SEASON/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..22c74affdfc45019bdda2594f8439c52d4ab97ec --- /dev/null +++ b/Projects/SEASON/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required (VERSION 2.8) +# Setting the policy to match Cmake version +cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}) +# include the default NPAnalysis cmake file +include("../../NPLib/ressources/CMake/NPAnalysis.cmake") diff --git a/Projects/SEASON/Calibration.txt b/Projects/SEASON/Calibration.txt new file mode 100644 index 0000000000000000000000000000000000000000..4656545684422033c14469d37431104a1edd5d75 --- /dev/null +++ b/Projects/SEASON/Calibration.txt @@ -0,0 +1,7 @@ +CalibrationFilePath + +%%%%%%%%%%%%%%%%%%%%%%%%%%%Backend%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + ./Calibration/Backend_Strip.cal + %./Calibration/Backend_Pixel.cal + %./Calibration/target.cal + diff --git a/Projects/SEASON/Calibration/Backend.cal b/Projects/SEASON/Calibration/Backend.cal new file mode 100644 index 0000000000000000000000000000000000000000..53f2f88f3c52b34d2e79d3ff2b5f90a5ad7fda03 --- /dev/null +++ b/Projects/SEASON/Calibration/Backend.cal @@ -0,0 +1,38 @@ +SEASON_Box_D1_DIST0_ENERGY 0.11018 1.96054 +SEASON_Box_D1_DIST2_ENERGY 0.11223 1.96040 +SEASON_Box_D1_DIST3_ENERGY 0.07405 1.97470 +SEASON_Box_D1_DIST4_ENERGY 0.12161 1.95949 +SEASON_Box_D1_DIST5_ENERGY 0.12891 1.95862 +SEASON_Box_D1_DIST6_ENERGY 0.13359 1.95776 +SEASON_Box_D1_DIST7_ENERGY 0.14151 1.95665 +SEASON_Box_D1_DIST8_ENERGY 0.14784 1.95591 +SEASON_Box_D1_DIST9_ENERGY 0.15528 1.95495 +SEASON_Box_D1_DIST10_ENERGY 0.15221 1.95705 +SEASON_Box_D1_DIST11_ENERGY 0.16889 1.95292 +SEASON_Box_D1_DIST12_ENERGY 0.17215 1.95334 +SEASON_Box_D1_DIST13_ENERGY 0.17917 1.95211 +SEASON_Box_D1_DIST14_ENERGY 0.18232 1.95186 +SEASON_Box_D1_DIST15_ENERGY 0.19578 1.94866 +SEASON_Box_D1_DIST16_ENERGY 0.20074 1.94825 +SEASON_Box_D1_DIST17_ENERGY 0.19950 1.95027 +SEASON_Box_D1_DIST18_ENERGY 0.21698 1.94519 +SEASON_Box_D1_DIST19_ENERGY 0.22272 1.94480 +SEASON_Box_D1_DIST20_ENERGY 0.24028 1.93948 +SEASON_Box_D1_DIST21_ENERGY 0.23351 1.94328 +SEASON_Box_D1_DIST22_ENERGY 0.23789 1.94290 +SEASON_Box_D1_DIST23_ENERGY 0.24826 1.94057 +SEASON_Box_D1_DIST24_ENERGY 0.24949 1.94142 +SEASON_Box_D1_DIST25_ENERGY 0.25962 1.93938 +SEASON_Box_D1_DIST26_ENERGY 0.26833 1.93748 +SEASON_Box_D1_DIST27_ENERGY 0.27285 1.93761 +SEASON_Box_D1_DIST28_ENERGY 0.27621 1.93801 +SEASON_Box_D1_DIST29_ENERGY 0.27744 1.93902 +SEASON_Box_D1_DIST30_ENERGY 0.29929 1.93205 +SEASON_Box_D1_DIST31_ENERGY 0.29651 1.93414 +SEASON_Box_D1_DIST32_ENERGY 0.30739 1.93182 +SEASON_Box_D1_DIST33_ENERGY 0.30491 1.93411 +SEASON_Box_D1_DIST34_ENERGY 0.31579 1.93142 +SEASON_Box_D1_DIST35_ENERGY 0.32074 1.93150 +SEASON_Box_D1_DIST36_ENERGY 0.32470 1.93152 +SEASON_Box_D1_DIST37_ENERGY 0.32777 1.93078 +SEASON_Box_D1_DIST38_ENERGY 0.33440 1.93050 diff --git a/Projects/SEASON/Calibration/Backend_Foil.cal b/Projects/SEASON/Calibration/Backend_Foil.cal new file mode 100644 index 0000000000000000000000000000000000000000..d8ec7709b5486f5dfba6ee8f5cd1022192ae5e17 --- /dev/null +++ b/Projects/SEASON/Calibration/Backend_Foil.cal @@ -0,0 +1,16 @@ +SEASON_Box_D1_DIST0_ENERGY 0.00010 1.00020 +SEASON_Box_D1_DIST2_ENERGY 0.01748 0.99755 +SEASON_Box_D1_DIST3_ENERGY 0.01359 0.99924 +SEASON_Box_D1_DIST5_ENERGY 0.02423 0.99874 +SEASON_Box_D1_DIST7_ENERGY 0.03458 0.99828 +SEASON_Box_D1_DIST9_ENERGY 0.04700 0.99738 +SEASON_Box_D1_DIST11_ENERGY 0.05591 0.99717 +SEASON_Box_D1_DIST13_ENERGY 0.06900 0.99602 +SEASON_Box_D1_DIST15_ENERGY 0.06969 0.99720 +SEASON_Box_D1_DIST17_ENERGY 0.08243 0.99637 +SEASON_Box_D1_DIST19_ENERGY 0.08110 0.99804 +SEASON_Box_D1_DIST21_ENERGY 0.09677 0.99652 +SEASON_Box_D1_DIST23_ENERGY 0.06314 1.00378 +SEASON_Box_D1_DIST25_ENERGY 0.08144 1.00194 +SEASON_Box_D1_DIST27_ENERGY 0.05286 1.00870 +SEASON_Box_D1_DIST29_ENERGY 0.11573 0.99857 diff --git a/Projects/SEASON/Calibration/Backend_Pixel.cal b/Projects/SEASON/Calibration/Backend_Pixel.cal new file mode 100644 index 0000000000000000000000000000000000000000..cdbe84c1a5a95bec5bd2b4b7ddb61762a4457e74 --- /dev/null +++ b/Projects/SEASON/Calibration/Backend_Pixel.cal @@ -0,0 +1,16 @@ +SEASON_Box_D1_DIST0_ENERGY -0.00545 1.00081 +SEASON_Box_D1_DIST2_ENERGY 0.00154 0.99990 +SEASON_Box_D1_DIST3_ENERGY 0.00299 1.00040 +SEASON_Box_D1_DIST5_ENERGY 0.00991 1.00022 +SEASON_Box_D1_DIST7_ENERGY 0.02033 0.99940 +SEASON_Box_D1_DIST9_ENERGY 0.02134 1.00029 +SEASON_Box_D1_DIST11_ENERGY 0.03923 0.99824 +SEASON_Box_D1_DIST13_ENERGY 0.03526 0.99984 +SEASON_Box_D1_DIST15_ENERGY 0.03079 1.00183 +SEASON_Box_D1_DIST17_ENERGY 0.03274 1.00252 +SEASON_Box_D1_DIST19_ENERGY 0.06777 0.99734 +SEASON_Box_D1_DIST21_ENERGY 0.08250 0.99584 +SEASON_Box_D1_DIST23_ENERGY 0.04538 1.00359 +SEASON_Box_D1_DIST25_ENERGY 0.02896 1.00784 +SEASON_Box_D1_DIST27_ENERGY 0.10852 0.99447 +SEASON_Box_D1_DIST29_ENERGY 0.05512 1.00539 diff --git a/Projects/SEASON/Calibration/Backend_Strip.cal b/Projects/SEASON/Calibration/Backend_Strip.cal new file mode 100644 index 0000000000000000000000000000000000000000..a2144a18c3108d7fa4e9fd287f350dfb87bac099 --- /dev/null +++ b/Projects/SEASON/Calibration/Backend_Strip.cal @@ -0,0 +1,32 @@ +SEASON_Box_D1_STRIPX1_ENERGY 0.35549 1.91456 +SEASON_Box_D1_STRIPX2_ENERGY 0.36000 1.91547 +SEASON_Box_D1_STRIPX3_ENERGY 0.37151 1.87076 +SEASON_Box_D1_STRIPX4_ENERGY 0.24316 1.99693 +SEASON_Box_D1_STRIPX5_ENERGY 0.23362 1.90634 +SEASON_Box_D1_STRIPX6_ENERGY 0.28747 1.97674 +SEASON_Box_D1_STRIPX7_ENERGY 0.24425 1.94714 +SEASON_Box_D1_STRIPX8_ENERGY 0.22239 1.88017 +SEASON_Box_D1_STRIPX9_ENERGY 0.14764 1.94980 +SEASON_Box_D1_STRIPX10_ENERGY 0.19384 1.87565 +SEASON_Box_D1_STRIPX11_ENERGY 0.16928 1.94493 +SEASON_Box_D1_STRIPX12_ENERGY 0.17745 1.89240 +SEASON_Box_D1_STRIPX13_ENERGY 0.14304 1.86448 +SEASON_Box_D1_STRIPX14_ENERGY 0.11860 1.93316 +SEASON_Box_D1_STRIPX15_ENERGY 0.11746 1.91730 +SEASON_Box_D1_STRIPX16_ENERGY 0.27887 1.90918 +SEASON_Box_D1_STRIPX17_ENERGY 0.10098 1.98376 +SEASON_Box_D1_STRIPX18_ENERGY 0.20399 1.65159 +SEASON_Box_D1_STRIPX19_ENERGY 0.11685 1.88110 +SEASON_Box_D1_STRIPX20_ENERGY 0.15385 1.86894 +SEASON_Box_D1_STRIPX21_ENERGY 0.15797 2.00550 +SEASON_Box_D1_STRIPX22_ENERGY 0.21148 2.04928 +SEASON_Box_D1_STRIPX23_ENERGY 0.17551 1.96918 +SEASON_Box_D1_STRIPX24_ENERGY 0.15215 1.91531 +SEASON_Box_D1_STRIPX25_ENERGY 0.20293 1.88286 +SEASON_Box_D1_STRIPX26_ENERGY 0.28498 1.87683 +SEASON_Box_D1_STRIPX27_ENERGY 0.30702 1.89906 +SEASON_Box_D1_STRIPX28_ENERGY 0.30773 1.96077 +SEASON_Box_D1_STRIPX29_ENERGY 0.32996 1.72899 +SEASON_Box_D1_STRIPX30_ENERGY 0.23622 1.94725 +SEASON_Box_D1_STRIPX31_ENERGY 0.35275 1.89272 +SEASON_Box_D1_STRIPX32_ENERGY 0.31856 1.91394 diff --git a/Projects/SEASON/Calibration/target.cal b/Projects/SEASON/Calibration/target.cal new file mode 100644 index 0000000000000000000000000000000000000000..4be4ec14d34fd7895be1b479c8046ce6d7d21248 --- /dev/null +++ b/Projects/SEASON/Calibration/target.cal @@ -0,0 +1,38 @@ +SEASON_Box_D1_DIST0_ENERGY 0.11329 1.96009 +SEASON_Box_D1_DIST2_ENERGY 0.11795 1.95912 +SEASON_Box_D1_DIST3_ENERGY 0.12118 1.95933 +SEASON_Box_D1_DIST4_ENERGY 0.12698 1.95884 +SEASON_Box_D1_DIST5_ENERGY 0.13870 1.95671 +SEASON_Box_D1_DIST6_ENERGY 0.14248 1.95636 +SEASON_Box_D1_DIST7_ENERGY 0.15193 1.95505 +SEASON_Box_D1_DIST8_ENERGY 0.15067 1.95747 +SEASON_Box_D1_DIST9_ENERGY 0.17709 1.94993 +SEASON_Box_D1_DIST10_ENERGY 0.17448 1.95178 +SEASON_Box_D1_DIST11_ENERGY 0.18927 1.94887 +SEASON_Box_D1_DIST12_ENERGY 0.18987 1.95042 +SEASON_Box_D1_DIST13_ENERGY 0.19819 1.94896 +SEASON_Box_D1_DIST14_ENERGY 0.20808 1.94662 +SEASON_Box_D1_DIST15_ENERGY 0.20714 1.94911 +SEASON_Box_D1_DIST16_ENERGY 0.22457 1.94429 +SEASON_Box_D1_DIST17_ENERGY 0.23104 1.94379 +SEASON_Box_D1_DIST18_ENERGY 0.23869 1.94260 +SEASON_Box_D1_DIST19_ENERGY 0.23633 1.94554 +SEASON_Box_D1_DIST20_ENERGY 0.23897 1.94560 +SEASON_Box_D1_DIST21_ENERGY 0.26076 1.93949 +SEASON_Box_D1_DIST22_ENERGY 0.26444 1.93981 +SEASON_Box_D1_DIST23_ENERGY 0.30077 1.92819 +SEASON_Box_D1_DIST24_ENERGY 0.27563 1.93898 +SEASON_Box_D1_DIST25_ENERGY 0.31987 1.92485 +SEASON_Box_D1_DIST26_ENERGY 0.31121 1.92926 +SEASON_Box_D1_DIST27_ENERGY 0.30077 1.93517 +SEASON_Box_D1_DIST28_ENERGY 0.33307 1.92492 +SEASON_Box_D1_DIST29_ENERGY 0.32113 1.93131 +SEASON_Box_D1_DIST30_ENERGY 0.33206 1.92853 +SEASON_Box_D1_DIST31_ENERGY 0.34353 1.92585 +SEASON_Box_D1_DIST32_ENERGY 0.34095 1.92884 +SEASON_Box_D1_DIST33_ENERGY 0.33382 1.93346 +SEASON_Box_D1_DIST34_ENERGY 0.32534 1.93876 +SEASON_Box_D1_DIST35_ENERGY 0.35547 1.92842 +SEASON_Box_D1_DIST36_ENERGY 0.36291 1.92728 +SEASON_Box_D1_DIST37_ENERGY 0.32855 1.94022 +SEASON_Box_D1_DIST38_ENERGY 0.34701 1.93701 diff --git a/Projects/SEASON/Calibration/test.cal b/Projects/SEASON/Calibration/test.cal new file mode 100644 index 0000000000000000000000000000000000000000..0d546bdd76e84f2d322d24c330c405e50c816337 --- /dev/null +++ b/Projects/SEASON/Calibration/test.cal @@ -0,0 +1,38 @@ +SEASON_Box_D1_DIST0_ENERGY 0.11329 1.96009 +SEASON_Box_D1_DIST2_ENERGY 0.11645 1.95964 +SEASON_Box_D1_DIST3_ENERGY 0.12120 1.95932 +SEASON_Box_D1_DIST4_ENERGY 0.12695 1.95885 +SEASON_Box_D1_DIST5_ENERGY 0.13876 1.95668 +SEASON_Box_D1_DIST6_ENERGY 0.14187 1.95657 +SEASON_Box_D1_DIST7_ENERGY 0.15215 1.95498 +SEASON_Box_D1_DIST8_ENERGY 0.15073 1.95745 +SEASON_Box_D1_DIST9_ENERGY 0.17483 1.95072 +SEASON_Box_D1_DIST10_ENERGY 0.17214 1.95267 +SEASON_Box_D1_DIST11_ENERGY 0.18806 1.94932 +SEASON_Box_D1_DIST12_ENERGY 0.18947 1.95056 +SEASON_Box_D1_DIST13_ENERGY 0.20037 1.94813 +SEASON_Box_D1_DIST14_ENERGY 0.20008 1.94960 +SEASON_Box_D1_DIST15_ENERGY 0.21461 1.94632 +SEASON_Box_D1_DIST16_ENERGY 0.22422 1.94440 +SEASON_Box_D1_DIST17_ENERGY 0.23247 1.94323 +SEASON_Box_D1_DIST18_ENERGY 0.23894 1.94252 +SEASON_Box_D1_DIST19_ENERGY 0.23630 1.94556 +SEASON_Box_D1_DIST20_ENERGY 0.24912 1.94182 +SEASON_Box_D1_DIST21_ENERGY 0.26056 1.93957 +SEASON_Box_D1_DIST22_ENERGY 0.25990 1.94146 +SEASON_Box_D1_DIST23_ENERGY 0.27315 1.93817 +SEASON_Box_D1_DIST24_ENERGY 0.29082 1.93322 +SEASON_Box_D1_DIST25_ENERGY 0.29667 1.93314 +SEASON_Box_D1_DIST26_ENERGY 0.30429 1.93175 +SEASON_Box_D1_DIST27_ENERGY 0.29936 1.93568 +SEASON_Box_D1_DIST28_ENERGY 0.33333 1.92483 +SEASON_Box_D1_DIST29_ENERGY 0.31990 1.93209 +SEASON_Box_D1_DIST30_ENERGY 0.33235 1.92843 +SEASON_Box_D1_DIST31_ENERGY 0.33990 1.92718 +SEASON_Box_D1_DIST32_ENERGY 0.33707 1.93018 +SEASON_Box_D1_DIST33_ENERGY 0.33385 1.93345 +SEASON_Box_D1_DIST34_ENERGY 0.32485 1.93896 +SEASON_Box_D1_DIST35_ENERGY 0.35543 1.92844 +SEASON_Box_D1_DIST36_ENERGY 0.33728 1.93710 +SEASON_Box_D1_DIST37_ENERGY 0.32857 1.94021 +SEASON_Box_D1_DIST38_ENERGY 0.34671 1.93714 diff --git a/Projects/SEASON/Detector/IndividualDetectors_MainStation.detector b/Projects/SEASON/Detector/IndividualDetectors_MainStation.detector new file mode 100644 index 0000000000000000000000000000000000000000..1399eae139e752fb8fa8c4dc4d2ebd54633ba492 --- /dev/null +++ b/Projects/SEASON/Detector/IndividualDetectors_MainStation.detector @@ -0,0 +1,50 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 0.09 micrometer + RADIUS= 7.5 mm + Material= C + ANGLE= 0 deg + X= 0 mm + Y= 0 mm + Z= 45 nm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Front-end DSSD +% DSSD1 +SEASON + X1_Y1= -33.9875 -33.9875 2 mm + X1_YMax= -33.9875 33.9875 2 mm + XMax_Y1= 33.9875 -33.9875 2 mm + XMax_YMax= 33.9875 33.9875 2 mm + EnergyThreshold= 20 keV +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Tunnel +% DSSD2 +SEASON + X1_Y1= 34.1875 -33.9875 -2 mm + X1_YMax= 34.1875 33.9875 -2 mm + XMax_Y1= 34.1875 -33.9875 -69.975 mm + XMax_YMax= 34.1875 33.9875 -69.975 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Tunnel +% DSSD3 +SEASON + X1_Y1= 33.9875 34.1875 -2 mm + X1_YMax= -33.9875 34.1875 -2 mm + XMax_Y1= 33.9875 34.1875 -69.975 mm + XMax_YMax= -33.9875 34.1875 -69.975 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Tunnel +% DSSD4 +SEASON + X1_Y1= -34.1875 33.9875 -2 mm + X1_YMax= -34.1875 -33.9875 -2 mm + XMax_Y1= -34.1875 33.9875 -69.975 mm + XMax_YMax= -34.1875 -33.9875 -69.975 mm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Tunnel +% DSSD5 +SEASON + X1_Y1= -33.9875 -34.1875 -2 mm + X1_YMax= 33.9875 -34.1875 -2 mm + XMax_Y1= -33.9875 -34.1875 -69.975 mm + XMax_YMax= 33.9875 -34.1875 -69.975 mm \ No newline at end of file diff --git a/Projects/SEASON/Detector/MainStation.detector b/Projects/SEASON/Detector/MainStation.detector new file mode 100644 index 0000000000000000000000000000000000000000..16ad604b2057209ba431a7ffab06fddf5e4aee87 --- /dev/null +++ b/Projects/SEASON/Detector/MainStation.detector @@ -0,0 +1,25 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 90 nm + RADIUS= 9 mm + Material= C + ANGLE= 0 deg + X= 0 mm + Y= 0 mm + Z= 45 nm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +SEASON + DSSD1Dist= 3 mm + TunnelDist= 3 mm + EnergyThreshold= 20 keV + FoilRadius= 9 mm + FoilThickness= 20 + UseDelocStation= False + UseWheel= False + UseChamber= False + +%FoilThickness: Must be given in ug/cm2, is converted in nm in the simulation code using rho=2.26 g/cm3 +%UseDelocStation: True to include delocalized station in simulation or False for no delocalized station +%UseWheel: Either True for a wheel in normal position, Rotated for a wheel in position for source calibration or False for no wheel +%UseChamber: True to include the aluminium chamber in between the setup and the germanium (5mm behind the back of DSSD1) or False for no chamber +% For the EXOGAM, the Z distance should be set to 13 mm + DSSD1Dist (9 mm between the back of DSSD1 and the aluminium window, 1.5 mm aluminium window, 1.5 mm between the aluminium window and the front of the exogam detector) \ No newline at end of file diff --git a/Projects/SEASON/Detector/SEASON.detector b/Projects/SEASON/Detector/SEASON.detector new file mode 100644 index 0000000000000000000000000000000000000000..060d1c84e8640f581b9b216a9b53cd51320575f3 --- /dev/null +++ b/Projects/SEASON/Detector/SEASON.detector @@ -0,0 +1,34 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +SEASON + DSSD1Dist= 3 mm + TunnelDist= 3 mm + EnergyThreshold= 20 keV + FoilRadius= 9 mm + FoilThickness= 20 + UseDelocStation= True + UseWheel= True + UseChamber= True +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Exogam clovers +% Behind DSSD1 +Exogam + X= 0 mm + Y= 0 mm + Z= 16 mm + ThetaX= 0 deg + ThetaY= 0 deg + ThetaZ= 0 deg +% Delocalized station +Exogam + X= -121 mm + Y= 265 mm + Z= 16 mm + ThetaX= 0 deg + ThetaY= 0 deg + ThetaZ= 0 deg + +%FoilThickness: Must be given in ug/cm2, is converted in nm in the simulation code using rho=2.26 g/cm3 +%UseDelocStation: True to include delocalized station in simulation or False for no delocalized station +%UseWheel: Either True for a wheel in normal position, Rotated for a wheel in position for source calibration or False for no wheel +%UseChamber: True to include the aluminium chamber in between the setup and the germanium (5mm behind the back of DSSD1) or False for no chamber +% For the EXOGAM, the Z distance should be set to 13 mm + DSSD1Dist (9 mm between the back of DSSD1 and the aluminium window, 1.5 mm aluminium window, 1.5 mm between the aluminium window and the front of the exogam detector) \ No newline at end of file diff --git a/Projects/SEASON/Detector/VariableGeom.detector b/Projects/SEASON/Detector/VariableGeom.detector new file mode 100644 index 0000000000000000000000000000000000000000..3f59ead825f505b58c32a18bd7e946c2ee2971eb --- /dev/null +++ b/Projects/SEASON/Detector/VariableGeom.detector @@ -0,0 +1,25 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 90 nm + RADIUS= 7.5 mm + Material= C + ANGLE= 0 deg + X= 0 mm + Y= 0 mm + Z= 45 nm +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +SEASON + DSSD1Dist= 15 mm + TunnelDist= 15 mm + EnergyThreshold= 20 keV + FoilRadius= 9 mm + FoilThickness= 20 + UseDelocStation= False + UseWheel= False + UseChamber= False + +%FoilThickness: Must be given in ug/cm2, is converted in nm in the simulation code using rho=2.26 g/cm3 +%UseDelocStation: True to include delocalized station in simulation or False for no delocalized station +%UseWheel: Either True for a wheel in normal position, Rotated for a wheel in position for source calibration or False for no wheel +%UseChamber: True to include the aluminium chamber in between the setup and the germanium (5mm behind the back of DSSD1) or False for no chamber +% For the EXOGAM, the Z distance should be set to 13 mm + DSSD1Dist (9 mm between the back of DSSD1 and the aluminium window, 1.5 mm aluminium window, 1.5 mm between the aluminium window and the front of the exogam detector) \ No newline at end of file diff --git a/Projects/SEASON/Macro/FinalAlphaEfficiency.C b/Projects/SEASON/Macro/FinalAlphaEfficiency.C new file mode 100644 index 0000000000000000000000000000000000000000..7c1a0d3121b1676795562466963d27cb0b5f0b38 --- /dev/null +++ b/Projects/SEASON/Macro/FinalAlphaEfficiency.C @@ -0,0 +1,112 @@ +#include <iostream> +#include <iomanip> +#include <fstream> +#include <sstream> +#include <algorithm> +#include <string> +#include <vector> + +#include "TH1.h" +#include "TMath.h" +#include "TSEASONData.h" +#include "ROOT/RVec.hxx" +#include "ROOT/RDataFrame.hxx" + +using namespace ROOT; +using namespace std; + + +void TreatSim(TString filename, double eff[4]){ + ROOT::EnableImplicitMT(); + ROOT::RDataFrame d("SimulatedTree",filename.Data()); + + auto d2 = d.Define("DetNbrX","(ROOT::RVec<UShort_t>)SEASON.VGetXE_DetectorNbr()").Define("DetNbrY","(ROOT::RVec<UShort_t>)SEASON.VGetYE_DetectorNbr()").Define("StripNbrX","(ROOT::RVec<UShort_t>)SEASON.VGetXE_StripNbr()").Define("StripNbrY","(ROOT::RVec<UShort_t>)SEASON.VGetYE_StripNbr()"); + + auto dEnergyRaw = d2.Define("EnergyX", "(ROOT::RVec<Double_t>)SEASON.VGetX_Energy()").Define("EnergyY", "(ROOT::RVec<Double_t>)SEASON.VGetY_Energy()").Define("E_DSSD1_Front", "EnergyX[DetNbrX==1 && EnergyX>7.5] * 1000").Define("E_DSSD1_Back", "EnergyY[DetNbrY==1 && EnergyY>7.5] * 1000").Define("E_Tunnel_Front", "EnergyX[DetNbrX>1 && EnergyX>7.9] * 1000").Define("E_Tunnel_Back", "EnergyY[DetNbrY>1 && EnergyY>7.9] * 1000");//.Filter("DetNbrX.size()==DetNbrY.size()"); + + auto dEnergyFilter = d2.Define("EnergyX","(ROOT::RVec<Double_t>)SEASON.VGetX_Energy()").Define("EnergyY","(ROOT::RVec<Double_t>)SEASON.VGetY_Energy()").Filter("DetNbrX.size()==DetNbrY.size()").Define("Ediff","1000*abs(EnergyX-EnergyY)").Define("E_DSSD1_Front","EnergyX[DetNbrX==1 && Ediff<40]*1000").Define("E_DSSD1_Back","EnergyY[DetNbrY==1 && Ediff<30]*1000").Define("E_Tunnel_Front","EnergyX[DetNbrX>1 && Ediff<40]*1000").Define("E_Tunnel_Back","EnergyY[DetNbrY>1 && Ediff<30]*1000");//.Filter("DetNbrX.size()==DetNbrY.size()"); + + + auto EnergyRaw_DSSD1_Front = dEnergyRaw.Histo1D({"EnergyRaw_DSSD1_Front","DSSD1 Front Energy no filter;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_DSSD1_Front"); + auto EnergyRaw_DSSD1_Back = dEnergyRaw.Histo1D({"EnergyRaw_DSSD1_Back","DSSD1 Back Energy no filter;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_DSSD1_Back"); + auto EnergyRaw_Tunnel_Front = dEnergyRaw.Histo1D({"EnergyRaw_Tunnel_Front","Tunnel Front Energy no filter;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_Tunnel_Front"); + auto EnergyRaw_Tunnel_Back = dEnergyRaw.Histo1D({"EnergyRaw_Tunnel_Back","Tunnel Back Energy no filter;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_Tunnel_Back"); + + auto EnergyFilter_DSSD1_Front = dEnergyFilter.Histo1D({"EnergyFilter_DSSD1_Front","DSSD1 Front Energy;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_DSSD1_Front"); + auto EnergyFilter_DSSD1_Back = dEnergyFilter.Histo1D({"EnergyFilter_DSSD1_Back","DSSD1 Back Energy;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_DSSD1_Back"); + auto EnergyFilter_Tunnel_Front = dEnergyFilter.Histo1D({"EnergyFilter_Tunnel_Front","Tunnel Front Energy;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_Tunnel_Front"); + auto EnergyFilter_Tunnel_Back = dEnergyFilter.Histo1D({"EnergyFilter_Tunnel_Back","Tunnel Back Energy;Energy (keV);Counts/10keV", 1200, -2000, 10000},"E_Tunnel_Back"); + + auto Ediff = dEnergyFilter.Histo1D({"Ediff","Ediff;E (keV);Counts",10000,0,10000},"Ediff"); + + TCanvas *c1 = (TCanvas*) gROOT->FindObject("c1"); + if(c1) delete c1; + c1 = new TCanvas("c1","c1",700,500); + c1->cd(); + TH1D* h1 = (TH1D*)EnergyRaw_DSSD1_Front->DrawClone(""); + EnergyFilter_DSSD1_Front->SetLineColor(2); + TH1D* h1_2 = (TH1D*)EnergyFilter_DSSD1_Front->DrawClone("same"); + // cout << "DSSD1 Front Raw : " << EnergyRaw_DSSD1_Front->GetEntries() << endl; + // cout << "DSSD1 Front Filter : " << EnergyFilter_DSSD1_Front->GetEntries() << endl; + // c1->Update(); + + TCanvas *c2 = (TCanvas*) gROOT->FindObject("c2"); + if(c2) delete c2; + c2 = new TCanvas("c2","c2",700,500); + c2->cd(); + TH1D* h2 = (TH1D*)EnergyRaw_DSSD1_Back->DrawClone(""); + EnergyFilter_DSSD1_Back->SetLineColor(2); + TH1D* h2_2 = (TH1D*)EnergyFilter_DSSD1_Back->DrawClone("same"); + // cout << "DSSD1 Back Raw : " << EnergyRaw_DSSD1_Back->GetEntries() << endl; + // cout << "DSSD1 Back Filter : " << EnergyFilter_DSSD1_Back->GetEntries() << endl; + // c2->Update(); + + TCanvas *c3 = (TCanvas*) gROOT->FindObject("c3"); + if(c3) delete c3; + c3 = new TCanvas("c3","c3",700,500); + c3->cd(); + TH1D* h3 = (TH1D*)EnergyRaw_Tunnel_Front->DrawClone(""); + EnergyFilter_Tunnel_Front->SetLineColor(2); + TH1D* h3_2 = (TH1D*)EnergyFilter_Tunnel_Front->DrawClone("same"); + // cout << "Tunnel Front Raw : " << EnergyRaw_Tunnel_Front->GetEntries() << endl; + // cout << "Tunnel Front Filter : " << EnergyFilter_Tunnel_Front->GetEntries() << endl; + // c3->Update(); + + TCanvas *c4 = (TCanvas*) gROOT->FindObject("c4"); + if(c4) delete c4; + c4 = new TCanvas("c4","c4",700,500); + c4->cd(); + TH1D* h4 = (TH1D*)EnergyRaw_Tunnel_Back->DrawClone(""); + EnergyFilter_Tunnel_Back->SetLineColor(2); + TH1D* h4_2 = (TH1D*)EnergyFilter_Tunnel_Back->DrawClone("same"); + // cout << "Tunnel Back Raw : " << EnergyRaw_Tunnel_Back->GetEntries() << endl; + // cout << "Tunnel Back Filter : " << EnergyFilter_Tunnel_Back->GetEntries() << endl; + // c4->Update(); + + TCanvas *C5 = (TCanvas*) gROOT->FindObject("C5"); + if(C5) delete C5; + C5 = new TCanvas("C5","C5",700,500); + C5->cd(); + TH1D* h5 = (TH1D*)Ediff->DrawClone(""); + + + eff[0] = EnergyRaw_DSSD1_Front->GetEntries()/100000.; + eff[1] = EnergyRaw_DSSD1_Back->GetEntries()/100000.; + eff[2] = EnergyRaw_Tunnel_Front->GetEntries()/100000.; + eff[3] = EnergyRaw_Tunnel_Back->GetEntries()/100000.; +} + +void FinalAlphaEfficiency(){ + + ofstream outFile("Results/FinalAlphaEfficiency.txt", ofstream::out | ofstream::app); + + outFile << "# Dist DSSD1_Front_Eff DSSD1_Back_Eff Tunnel_Front_Eff Tunnel_Back_Eff" << endl; + int dist[] = {2,3,4,5,6,7,8,9,10,12,15,20,25,30,40,50}; + for(int i=0;i<16;i++){ + double eff[4]; + TreatSim(TString::Format("FinalAlphaGeometries/Alpha_%imm.root",dist[i]), eff); + + outFile << dist[i] << " " << eff[0] << " " << eff[1] << " " << eff[2] << " " << eff[3] << endl; + cout << dist[i] << " " << eff[0] << " " << eff[1] << " " << eff[2] << " " << eff[3] << endl; + } +} \ No newline at end of file diff --git a/Projects/SEASON/Macro/FinalElectronEfficiency.C b/Projects/SEASON/Macro/FinalElectronEfficiency.C new file mode 100644 index 0000000000000000000000000000000000000000..ee7d01c9e20a16b4f8faf6130c53d39f6e66f0f4 --- /dev/null +++ b/Projects/SEASON/Macro/FinalElectronEfficiency.C @@ -0,0 +1,98 @@ +#include <iostream> +#include <iomanip> +#include <fstream> +#include <sstream> +#include <algorithm> +#include <string> +#include <vector> + +#include "TH1.h" +#include "TMath.h" +#include "TSEASONData.h" +#include "ROOT/RVec.hxx" +#include "ROOT/RDataFrame.hxx" + +using namespace ROOT; +using namespace std; + +Double_t fitfunction(Double_t *x, Double_t *par){ + Double_t E = x[0]; + Double_t temp = (E-par[1])/par[2]; + Double_t G = par[0]/(sqrt(2*TMath::Pi())*par[2])*exp(-0.5*temp*temp); + Double_t r = 0.5-0.5*TMath::TanH(temp); + return G + r*(par[3]*E + par[4]) + (1-r)*(par[5]*E + par[6]); +} + +Double_t ElectronPeak(Double_t *x, Double_t *par){ + Double_t I = par[0], mean = par[1], sigma = par[2], b_rate = par[3]; + Double_t value = (x[0]-mean)/(TMath::Sqrt(2)*sigma); + Double_t amp = I/(sigma*TMath::Sqrt(2.*TMath::Pi())); + Double_t G = (1-b_rate) * amp * TMath::Exp(-value*value); + Double_t backscattering = b_rate * I * TMath::Erfc(value) / (2*mean); + return G + backscattering; +} + +void TreatSim(TString filename, double eff[4]){ + + ROOT::EnableImplicitMT(); + ROOT::RDataFrame d("SimulatedTree",filename.Data()); + + auto DSSD1Hit = [](const ROOT::RVec<UShort_t> DetNumber, const ROOT::RVec<Double_t> Energy) { return 1000*Energy[DetNumber==1]; }; + auto TunnelHit = [](const ROOT::RVec<UShort_t> DetNumber, const ROOT::RVec<Double_t> Energy) { return 1000*Energy[DetNumber>=2]; }; + + auto d2 = d.Define("Energy","(ROOT::RVec<Double_t>)SEASON.VGetY_Energy()").Define("DetNumber","(ROOT::RVec<UShort_t>)SEASON.VGetYE_DetectorNbr()").Define("EDSSD1",DSSD1Hit,{"DetNumber","Energy"}).Define("ETunnel",TunnelHit,{"DetNumber","Energy"}); + auto h_DSSD1 = d2.Histo1D({"Energy_DSSD1","Electron Energy in DSSD1;DSSD1 Energy (keV);Counts/keV",40,80,120},"EDSSD1"); + auto h_Tunnel = d2.Histo1D({"Energy_DSSD2","Electron Energy in DSSD2;DSSD2 Energy (keV);Counts/keV",40,80,120},"ETunnel"); + + TCanvas *c1 = (TCanvas*) gROOT->FindObject("c1"); + if(c1) delete c1; + c1 = new TCanvas("c1","c1",700,500); + TH1D* h1 = (TH1D*)h_DSSD1->DrawClone(); + + TCanvas *c2 = (TCanvas*) gROOT->FindObject("c2"); + if(c2) delete c2; + c2 = new TCanvas("c2","c2",700,500); + TH1D* h2 = (TH1D*)h_Tunnel->DrawClone(); + + c1->cd(); + TF1 *FitFunction = new TF1("FitFunction", fitfunction, 0, 1000, 7); + FitFunction->SetParameters(50000,100,3,0,0,0,0); + // TF1 *FitFunction = new TF1("FitFunction", ElectronPeak, 0, 1000, 4); + // FitFunction->SetParameters(50000,100,3,0.5); + TFitResultPtr fitRes = h1->Fit("FitFunction", "SMQE", "SAME", 80, 120); + //cout << " Chi2/NdF : " << fitRes->Chi2() << "/" << fitRes->Ndf() << " = " << fitRes->Chi2()/fitRes->Ndf() << " => Prob : " << fitRes->Prob() << endl; + double IDSSD1_100 = fitRes->Parameter(0); + double IDSSD1_100_err = fitRes->ParError(0); + + c1->Update(); + + c2->cd(); + FitFunction->SetParameters(50000,100,3,0,0,0,0); + // FitFunction->SetParameters(50000,100,3,0.5); + fitRes = h2->Fit("FitFunction", "SMQE", "SAME", 80, 120); + + double ITunnel_100 = fitRes->Parameter(0); + double ITunnel_100_err = fitRes->ParError(0); + + c2->Update(); + + eff[0] = IDSSD1_100/100000.; + eff[1] = IDSSD1_100_err/100000.; + eff[2] = ITunnel_100/100000.; + eff[3] = ITunnel_100_err/100000.; +} + + +void ElectronEfficiency(){ + ofstream outFile("Results/FinalGeometryElectronsEfficiency.txt", ofstream::out | ofstream::app); + + outFile << "# Dist DSSD1_Eff DSSD2_Eff " << endl; + int dist[] = {2,3,4,5,6,7,8,9,10,12,15,20,25,30,40,50}; + for(int i=0;i<16;i++){ + double eff[4]; + TreatSim(TString::Format("FinalElectronGeometries/Electron_%imm.root",dist[i]), eff); + + outFile << dist[i] << " " << eff[0] << " " << eff[2] << endl; + cout << dist[i] << " " << eff[0] << " " << eff[2] << endl; + } +} \ No newline at end of file diff --git a/Projects/SEASON/Macro/MultipleElectronEfficiency.C b/Projects/SEASON/Macro/MultipleElectronEfficiency.C new file mode 100644 index 0000000000000000000000000000000000000000..841cc1f17fde8cd61251f545934e0ed23595d97b --- /dev/null +++ b/Projects/SEASON/Macro/MultipleElectronEfficiency.C @@ -0,0 +1,162 @@ +#include <iostream> +#include <iomanip> +#include <fstream> +#include <sstream> +#include <algorithm> +#include <string> +#include <vector> + +#include "TH1.h" +#include "TMath.h" +#include "TSEASONData.h" +#include "ROOT/RVec.hxx" +#include "ROOT/RDataFrame.hxx" + +using namespace ROOT; +using namespace std; + +Double_t fitfunction(Double_t *x, Double_t *par){ + Double_t E = x[0]; + Double_t temp = (E-par[1])/par[2]; + Double_t G = par[0]/(sqrt(2*TMath::Pi())*par[2])*exp(-0.5*temp*temp); + Double_t r = 0.5-0.5*TMath::TanH(temp); + return G + r*(par[3]*E + par[4]) + (1-r)*(par[5]*E + par[6]); +} + + +void TreatSim(TString filename, double eff[4]){ + + ROOT::EnableImplicitMT(); + ROOT::RDataFrame d("SimulatedTree",filename.Data()); + + auto DSSD1Hit = [](const ROOT::RVec<UShort_t> DetNumberX, const ROOT::RVec<UShort_t> DetNumberY, const ROOT::RVec<Double_t> EnergyX, const ROOT::RVec<Double_t> EnergyY) { + if(EnergyX.size()>=EnergyY.size()) return 1000*EnergyX[DetNumberX==1]; + else if (EnergyX.size()<EnergyY.size()) return 1000*EnergyY[DetNumberY==1]; + }; + auto TunnelHit = [](const ROOT::RVec<UShort_t> DetNumberX, const ROOT::RVec<UShort_t> DetNumberY, const ROOT::RVec<Double_t> EnergyX, const ROOT::RVec<Double_t> EnergyY) { + if(EnergyX.size()>=EnergyY.size()) return 1000*EnergyX[DetNumberX>=2]; + else if (EnergyX.size()<EnergyY.size()) return 1000*EnergyY[DetNumberY>=2]; + }; + + auto d2 = d.Define("EnergyX","(ROOT::RVec<Double_t>)SEASON.VGetX_Energy()"); + auto d3 = d2.Define("EnergyY","(ROOT::RVec<Double_t>)SEASON.VGetY_Energy()"); + auto d4 = d3.Define("DetNumberX","(ROOT::RVec<UShort_t>)SEASON.VGetXE_DetectorNbr()"); + auto d5 = d4.Define("DetNumberY","(ROOT::RVec<UShort_t>)SEASON.VGetYE_DetectorNbr()"); + // auto d5 = d4.Define("StripX","(ROOT::RVec<UShort_t>)SEASON.VGetXE_StripNbr()"); + // auto d6 = d5.Define("StripY","(ROOT::RVec<UShort_t>)SEASON.VGetYE_StripNbr()"); + auto d6 = d5.Define("EDSSD1",DSSD1Hit,{"DetNumberX","DetNumberY","EnergyX","EnergyY"}); + auto d7 = d6.Define("ETunnel",TunnelHit,{"DetNumberX","DetNumberY","EnergyX","EnergyY"}); + + + auto h_DSSD1 = d7.Histo1D({"Energy_DSSD1","Electron Energy in DSSD1;DSSD1 Energy (keV);Counts/keV",1000,0,1000},"EDSSD1"); + auto h_Tunnel = d7.Histo1D({"Energy_DSSD2","Electron Energy in Tunnel;Tunnel Energy (keV);Counts/keV",1000,0,1000},"ETunnel"); + + TCanvas *c1 = (TCanvas*) gROOT->FindObject("c1"); + if(c1) delete c1; + c1 = new TCanvas("c1","c1",700,500); + TH1D* h1 = (TH1D*)h_DSSD1->DrawClone(); + + TCanvas *c2 = (TCanvas*) gROOT->FindObject("c2"); + if(c2) delete c2; + c2 = new TCanvas("c2","c2",700,500); + TH1D* h2 = (TH1D*)h_Tunnel->DrawClone(); + + c1->cd(); + TF1 *FitFunction = new TF1("FitFunction", fitfunction, 0, 1000, 7); + FitFunction->SetParameters(100000,50,2,0,0,0,0); + TFitResultPtr fitRes = h1->Fit("FitFunction", "SMQE", "SAME", 30, 70); + //cout << " Chi2/NdF : " << fitRes->Chi2() << "/" << fitRes->Ndf() << " = " << fitRes->Chi2()/fitRes->Ndf() << " => Prob : " << fitRes->Prob() << endl; + double IDSSD1_50 = fitRes->Parameter(0); + double IDSSD1_50_err = fitRes->ParError(0); + + // c1->Update(); + // + // FitFunction->SetParameters(100000,150,2,0,0,0,0); + // fitRes = h1->Fit("FitFunction", "SMQE", "SAME", 130, 170); + // + // double IDSSD1_150 = fitRes->Parameter(0); + // + // c1->Update(); + // + // FitFunction->SetParameters(100000,250,2,0,0,0,0); + // fitRes = h1->Fit("FitFunction", "SMQE", "SAME", 230, 270); + // + // double IDSSD1_250 = fitRes->Parameter(0); + // + // c1->Update(); + // + // FitFunction->SetParameters(100000,500,2,0,0,0,0); + // fitRes = h1->Fit("FitFunction", "SMQE", "SAME", 480, 520); + // + // double IDSSD1_500 = fitRes->Parameter(0); + + c1->Update(); + + c2->cd(); + FitFunction->SetParameters(100000,50,2,0,0,0,0); + fitRes = h2->Fit("FitFunction", "SMQE", "SAME", 30, 70); + + double ITunnel_50 = fitRes->Parameter(0); + double ITunnel_50_err = fitRes->ParError(0); + + c2->Update(); + + // FitFunction->SetParameters(100000,150,2,0,0,0,0); + // fitRes = h2->Fit("FitFunction", "SMQE", "SAME", 130, 170); + // + // double ITunnel_150 = fitRes->Parameter(0); + // + // c2->Update(); + // + // FitFunction->SetParameters(100000,250,2,0,0,0,0); + // fitRes = h2->Fit("FitFunction", "SMQE", "SAME", 230, 270); + // + // double ITunnel_250 = fitRes->Parameter(0); + // + // c2->Update(); + // + // FitFunction->SetParameters(100000,500,2,0,0,0,0); + // fitRes = h2->Fit("FitFunction", "SMQE", "SAME", 480, 520); + // + // double ITunnel_500 = fitRes->Parameter(0); + // + // c2->Update(); + // + //cout << IDSSD1_50/400000. << " " << IDSSD1_150/400000. << " " << IDSSD1_250/400000. << " " << IDSSD1_500/400000. << endl; + //cout << ITunnel_50/400000. << " " << ITunnel_150/400000. << " " << ITunnel_250/400000. << " " << ITunnel_500/400000. << endl; + + + + eff[0] = IDSSD1_50/100000.; + eff[1] = ITunnel_50/100000.; + eff[2] = IDSSD1_50_err/100000.; + eff[3] = ITunnel_50_err/100000.; + // + // cout << eff[0] << " " << eff[2] << endl; + // cout << eff[1] << " " << eff[3] << endl; + // cout << eff[0]+eff[1] << " " << TMath::Sqrt(eff[2]*eff[2]+eff[3]*eff[3]) << endl; +} + + +void ElectronEfficiency(){ + + + ofstream outFile("Results/MultipleElectronsMultipleGeometriesEfficiency.txt", ofstream::out | ofstream::app); + + outFile << "#Nemitted Dist DSSD1_Eff Err DSSD2_Eff Err Total_Eff Err " << endl; + double eff[4]; + int dist[7] = {2,3,4,5,7,10,15}; + int NPartMax=6; + for(int i=0;i<7;i++){ + TreatSim(TString::Format("MultipleEmissionMultipleGeometries/0Alpha1Electron_%imm.root",dist[i]), eff); + outFile << 1 << " " << dist[i] << " " << eff[0] << " " << eff[2] << " " << eff[1] << " " << eff[3] << " " << eff[0]+eff[1] << TMath::Sqrt(eff[2]*eff[2]+eff[3]*eff[3]) << endl; + cout << 1 << " " << dist[i] << " " << eff[0] << " " << eff[2] << " " << eff[1] << " " << eff[3] << " " << eff[0]+eff[1] << TMath::Sqrt(eff[2]*eff[2]+eff[3]*eff[3]) << endl; + } + for(int NPart=2;NPart<=NPartMax;NPart++){ + for(int i=0;i<7;i++){ + TreatSim(TString::Format("MultipleEmissionMultipleGeometries/1Alpha%iElectron_%imm.root",NPart-1,dist[i]), eff); + outFile << NPart << " " << dist[i] << " " << eff[0] << " " << eff[2] << " " << eff[1] << " " << eff[3] << " " << eff[0]+eff[1] << TMath::Sqrt(eff[2]*eff[2]+eff[3]*eff[3]) << endl; + cout << NPart << " " << dist[i] << " " << eff[0] << " " << eff[2] << " " << eff[1] << " " << eff[3] << " " << eff[0]+eff[1] << TMath::Sqrt(eff[2]*eff[2]+eff[3]*eff[3]) << endl; + } + } +} \ No newline at end of file diff --git a/Projects/SEASON/Macro/plot.C b/Projects/SEASON/Macro/plot.C new file mode 100644 index 0000000000000000000000000000000000000000..54d85d3497a7e72624eaee6c35b9bbc54190bb7e --- /dev/null +++ b/Projects/SEASON/Macro/plot.C @@ -0,0 +1,457 @@ +#include "TGraph.h" +#include "TCanvas.h" +#include "TGraphErrors.h" + +void PlotEfficiencyAlpha(string peaksfile){ + + ifstream fin(peaksfile.c_str(), ios::in | ios::binary); + + string line; + stringstream linestream; + int TempDist; + double TempEff_DSSD1, TempEff_Tunnel, temp; + + vector<double> Dist; + vector<double> Eff_DSSD1, Eff_Tunnel, Eff_Tot; + + while(fin.good()){ + getline(fin,line); + linestream.clear(); + linestream.str(line); + if(linestream.fail() or line.empty()) continue; + if(line.find("#") != string::npos) continue; + + linestream >> TempDist >> TempEff_DSSD1 >> temp >> TempEff_Tunnel >> temp; + + Dist.push_back(TempDist); + Eff_DSSD1.push_back(TempEff_DSSD1*100.); + Eff_Tunnel.push_back(TempEff_Tunnel*100.); + Eff_Tot.push_back(TempEff_Tunnel*100.+TempEff_DSSD1*100.); + } + + fin.close(); + + + TGraph *g1 = new TGraph(16,Dist.data(),Eff_DSSD1.data()); + + g1->SetMarkerColor(1); + g1->SetMarkerStyle(50); + g1->SetMarkerSize(4); + g1->SetTitle(";DSSD1-Foil (mm);#epsilon_{#alpha} (%)"); + + TCanvas *c = new TCanvas("EffDSSD1","EffDSSD1"); + g1->GetXaxis()->CenterTitle(); + g1->GetXaxis()->SetTitleSize(0.05); + g1->GetYaxis()->CenterTitle(); + g1->GetYaxis()->SetTitleSize(0.05); + g1->GetYaxis()->SetTitleOffset(0.75); + g1->Draw("ap"); + c->Update(); + + TGraph *g2 = new TGraph(16,Dist.data(),Eff_Tunnel.data()); + + g2->SetMarkerColor(1); + g2->SetMarkerStyle(50); + g2->SetMarkerSize(4); + g2->SetTitle(";Tunnel-Foil (mm);#epsilon_{#alpha} (%)"); + + TCanvas *c2 = new TCanvas("EffTunnel","EffTunnel"); + g2->GetXaxis()->CenterTitle(); + g2->GetXaxis()->SetTitleSize(0.05); + g2->GetYaxis()->CenterTitle(); + g2->GetYaxis()->SetTitleSize(0.05); + g2->GetYaxis()->SetTitleOffset(0.75); + g2->Draw("ap"); + c2->Update(); + + TGraph *g3 = new TGraph(16,Dist.data(),Eff_Tot.data()); + + g3->SetMarkerColor(1); + g3->SetMarkerStyle(50); + g3->SetMarkerSize(4); + g3->SetTitle(";Detector-Foil (mm);#epsilon_{#alpha} (%)"); + + TCanvas *c3 = new TCanvas("EffTot","EffTot"); + g3->GetXaxis()->CenterTitle(); + g3->GetXaxis()->SetTitleSize(0.05); + g3->GetYaxis()->CenterTitle(); + g3->GetYaxis()->SetTitleSize(0.05); + g3->GetYaxis()->SetTitleOffset(0.75); + g3->Draw("ap"); + c3->Update(); +} + +void PlotEfficiencyElectrons(string peaksfile){ + + ifstream fin(peaksfile.c_str(), ios::in | ios::binary); + + string line; + stringstream linestream; + int TempDist; + double TempEff_DSSD1, TempEff_Tunnel; + + vector<double> Dist; + vector<double> Eff_DSSD1, Eff_Tunnel, Eff_Tot; + + while(fin.good()){ + getline(fin,line); + linestream.clear(); + linestream.str(line); + if(linestream.fail() or line.empty()) continue; + if(line.find("#") != string::npos) continue; + + linestream >> TempDist >> TempEff_DSSD1 >> TempEff_Tunnel; + + Dist.push_back(TempDist); + Eff_DSSD1.push_back(TempEff_DSSD1*100.); + Eff_Tunnel.push_back(TempEff_Tunnel*100.); + Eff_Tot.push_back(TempEff_Tunnel*100.+TempEff_DSSD1*100.); + } + + fin.close(); + + + TGraph *g1 = new TGraph(Dist.size(),Dist.data(),Eff_DSSD1.data()); + + g1->SetMarkerColor(1); + g1->SetMarkerStyle(50); + g1->SetMarkerSize(4); + g1->SetTitle(";DSSD1-Foil (mm);#epsilon_{e-} (%)"); + + TCanvas *c = new TCanvas("EffDSSD1","EffDSSD1"); + g1->GetXaxis()->CenterTitle(); + g1->GetXaxis()->SetTitleSize(0.05); + g1->GetYaxis()->CenterTitle(); + g1->GetYaxis()->SetTitleSize(0.05); + g1->GetYaxis()->SetTitleOffset(0.75); + g1->Draw("ap"); + c->Update(); + + TGraph *g2 = new TGraph(Dist.size(),Dist.data(),Eff_Tunnel.data()); + + g2->SetMarkerColor(1); + g2->SetMarkerStyle(50); + g2->SetMarkerSize(4); + g2->SetTitle(";Tunnel-Foil (mm);#epsilon_{e-} (%)"); + + TCanvas *c2 = new TCanvas("EffTunnel","EffTunnel"); + g2->GetXaxis()->CenterTitle(); + g2->GetXaxis()->SetTitleSize(0.05); + g2->GetYaxis()->CenterTitle(); + g2->GetYaxis()->SetTitleSize(0.05); + g2->GetYaxis()->SetTitleOffset(0.75); + g2->Draw("ap"); + c2->Update(); + + TGraph *g3 = new TGraph(Dist.size(),Dist.data(),Eff_Tot.data()); + + g3->SetMarkerColor(1); + g3->SetMarkerStyle(50); + g3->SetMarkerSize(4); + g3->SetTitle(";Detector-Foil (mm);#epsilon_{e-} (%)"); + + TCanvas *c3 = new TCanvas("EffTot","EffTot"); + g3->GetXaxis()->CenterTitle(); + g3->GetXaxis()->SetTitleSize(0.05); + g3->GetYaxis()->CenterTitle(); + g3->GetYaxis()->SetTitleSize(0.05); + g3->GetYaxis()->SetTitleOffset(0.75); + g3->Draw("ap"); + c3->Update(); +} + +void PlotMultipleElectronsEfficiency(string peaksfile){ + + ifstream fin(peaksfile.c_str(), ios::in | ios::binary); + + string line; + stringstream linestream; + int TempDist, TempNPart; + double TempEffDSSD1, TempEffDSSD1Err, TempEffTunnel, TempEffTunnelErr, TempEffTot, TempEffTotErr; + + vector<int> Dist, NPart; + vector<double> EffDSSD1, EffDSSD1Err, EffTunnel, EffTunnelErr, EffTot, EffTotErr; + + while(fin.good()){ + getline(fin,line); + linestream.clear(); + linestream.str(line); + if(linestream.fail() or line.empty()) continue; + if(line.find("#") != string::npos) continue; + + linestream >> TempNPart >> TempDist >> TempEffDSSD1 >> TempEffDSSD1Err >> TempEffTunnel >> TempEffTunnelErr >> TempEffTot >> TempEffTotErr; + + NPart.push_back(TempNPart); + Dist.push_back(TempDist); + EffDSSD1.push_back(TempEffDSSD1*100.); + EffDSSD1Err.push_back(TempEffDSSD1Err*100.); + EffTunnel.push_back(TempEffTunnel*100.); + EffTunnelErr.push_back(TempEffTunnelErr*100.); + EffTot.push_back(TempEffTot*100.); + EffTotErr.push_back(TempEffTotErr*100.); + } + + fin.close(); + + double Dist_1[7]; + + double EffTot_1[7]; + double EffTot_2[7]; + double EffTot_3[7]; + double EffTot_4[7]; + double EffTot_5[7]; + double EffTot_6[7]; + + double EffTotErr_1[7]; + double EffTotErr_2[7]; + double EffTotErr_3[7]; + double EffTotErr_4[7]; + double EffTotErr_5[7]; + double EffTotErr_6[7]; + + double EffDSSD1_1[7]; + double EffDSSD1_2[7]; + double EffDSSD1_3[7]; + double EffDSSD1_4[7]; + double EffDSSD1_5[7]; + double EffDSSD1_6[7]; + + double EffDSSD1Err_1[7]; + double EffDSSD1Err_2[7]; + double EffDSSD1Err_3[7]; + double EffDSSD1Err_4[7]; + double EffDSSD1Err_5[7]; + double EffDSSD1Err_6[7]; + + double EffTunnel_1[7]; + double EffTunnel_2[7]; + double EffTunnel_3[7]; + double EffTunnel_4[7]; + double EffTunnel_5[7]; + double EffTunnel_6[7]; + + double EffTunnelErr_1[7]; + double EffTunnelErr_2[7]; + double EffTunnelErr_3[7]; + double EffTunnelErr_4[7]; + double EffTunnelErr_5[7]; + double EffTunnelErr_6[7]; + + for(int i=0;i<7;i++){ + Dist_1[i] = Dist[i]; + + EffTot_1[i] = EffTot[i]; + EffTot_2[i] = EffTot[i+7]; + EffTot_3[i] = EffTot[i+14]; + EffTot_4[i] = EffTot[i+21]; + EffTot_5[i] = EffTot[i+28]; + EffTot_6[i] = EffTot[i+35]; + + EffTotErr_1[i] = EffTotErr[i]; + EffTotErr_2[i] = EffTotErr[i+7]; + EffTotErr_3[i] = EffTotErr[i+14]; + EffTotErr_4[i] = EffTotErr[i+21]; + EffTotErr_5[i] = EffTotErr[i+28]; + EffTotErr_6[i] = EffTotErr[i+35]; + + EffDSSD1_1[i] = EffDSSD1[i]; + EffDSSD1_2[i] = EffDSSD1[i+7]; + EffDSSD1_3[i] = EffDSSD1[i+14]; + EffDSSD1_4[i] = EffDSSD1[i+21]; + EffDSSD1_5[i] = EffDSSD1[i+28]; + EffDSSD1_6[i] = EffDSSD1[i+35]; + + EffDSSD1Err_1[i] = EffDSSD1Err[i]; + EffDSSD1Err_2[i] = EffDSSD1Err[i+7]; + EffDSSD1Err_3[i] = EffDSSD1Err[i+14]; + EffDSSD1Err_4[i] = EffDSSD1Err[i+21]; + EffDSSD1Err_5[i] = EffDSSD1Err[i+28]; + EffDSSD1Err_6[i] = EffDSSD1Err[i+35]; + + EffTunnel_1[i] = EffTunnel[i]; + EffTunnel_2[i] = EffTunnel[i+7]; + EffTunnel_3[i] = EffTunnel[i+14]; + EffTunnel_4[i] = EffTunnel[i+21]; + EffTunnel_5[i] = EffTunnel[i+28]; + EffTunnel_6[i] = EffTunnel[i+35]; + + EffTunnelErr_1[i] = EffTunnelErr[i]; + EffTunnelErr_2[i] = EffTunnelErr[i+7]; + EffTunnelErr_3[i] = EffTunnelErr[i+14]; + EffTunnelErr_4[i] = EffTunnelErr[i+21]; + EffTunnelErr_5[i] = EffTunnelErr[i+28]; + EffTunnelErr_6[i] = EffTunnelErr[i+35]; + } + + + TGraphErrors *gTot1 = new TGraphErrors(7,Dist_1,EffTot_1,NULL,EffTotErr_1); + TGraphErrors *gTot2 = new TGraphErrors(7,Dist_1,EffTot_2,NULL,EffTotErr_2); + TGraphErrors *gTot3 = new TGraphErrors(7,Dist_1,EffTot_3,NULL,EffTotErr_3); + TGraphErrors *gTot4 = new TGraphErrors(7,Dist_1,EffTot_4,NULL,EffTotErr_4); + TGraphErrors *gTot5 = new TGraphErrors(7,Dist_1,EffTot_5,NULL,EffTotErr_5); + TGraphErrors *gTot6 = new TGraphErrors(7,Dist_1,EffTot_6,NULL,EffTotErr_6); + + gTot1->SetMarkerColor(1); + gTot2->SetMarkerColor(2); + gTot3->SetMarkerColor(3); + gTot4->SetMarkerColor(4); + gTot5->SetMarkerColor(6); + gTot6->SetMarkerColor(7); + + gTot1->SetMarkerStyle(50); + gTot2->SetMarkerStyle(52); + gTot3->SetMarkerStyle(50); + gTot4->SetMarkerStyle(52); + gTot5->SetMarkerStyle(50); + gTot6->SetMarkerStyle(52); + + gTot1->SetMarkerSize(4); + gTot2->SetMarkerSize(4); + gTot3->SetMarkerSize(4); + gTot4->SetMarkerSize(4); + gTot5->SetMarkerSize(4); + gTot6->SetMarkerSize(4); + + + TGraphErrors *gDSSD1_1 = new TGraphErrors(7,Dist_1,EffDSSD1_1,NULL,EffDSSD1Err_1); + TGraphErrors *gDSSD1_2 = new TGraphErrors(7,Dist_1,EffDSSD1_2,NULL,EffDSSD1Err_2); + TGraphErrors *gDSSD1_3 = new TGraphErrors(7,Dist_1,EffDSSD1_3,NULL,EffDSSD1Err_3); + TGraphErrors *gDSSD1_4 = new TGraphErrors(7,Dist_1,EffDSSD1_4,NULL,EffDSSD1Err_4); + TGraphErrors *gDSSD1_5 = new TGraphErrors(7,Dist_1,EffDSSD1_5,NULL,EffDSSD1Err_5); + TGraphErrors *gDSSD1_6 = new TGraphErrors(7,Dist_1,EffDSSD1_6,NULL,EffDSSD1Err_6); + + gDSSD1_1->SetMarkerColor(1); + gDSSD1_2->SetMarkerColor(2); + gDSSD1_3->SetMarkerColor(3); + gDSSD1_4->SetMarkerColor(4); + gDSSD1_5->SetMarkerColor(6); + gDSSD1_6->SetMarkerColor(7); + + gDSSD1_1->SetMarkerStyle(50); + gDSSD1_2->SetMarkerStyle(52); + gDSSD1_3->SetMarkerStyle(50); + gDSSD1_4->SetMarkerStyle(52); + gDSSD1_5->SetMarkerStyle(50); + gDSSD1_6->SetMarkerStyle(52); + + gDSSD1_1->SetMarkerSize(4); + gDSSD1_2->SetMarkerSize(4); + gDSSD1_3->SetMarkerSize(4); + gDSSD1_4->SetMarkerSize(4); + gDSSD1_5->SetMarkerSize(4); + gDSSD1_6->SetMarkerSize(4); + + TGraphErrors *gTunnel_1 = new TGraphErrors(7,Dist_1,EffTunnel_1,NULL,EffTunnelErr_1); + TGraphErrors *gTunnel_2 = new TGraphErrors(7,Dist_1,EffTunnel_2,NULL,EffTunnelErr_2); + TGraphErrors *gTunnel_3 = new TGraphErrors(7,Dist_1,EffTunnel_3,NULL,EffTunnelErr_3); + TGraphErrors *gTunnel_4 = new TGraphErrors(7,Dist_1,EffTunnel_4,NULL,EffTunnelErr_4); + TGraphErrors *gTunnel_5 = new TGraphErrors(7,Dist_1,EffTunnel_5,NULL,EffTunnelErr_5); + TGraphErrors *gTunnel_6 = new TGraphErrors(7,Dist_1,EffTunnel_6,NULL,EffTunnelErr_6); + + gTunnel_1->SetMarkerColor(1); + gTunnel_2->SetMarkerColor(2); + gTunnel_3->SetMarkerColor(3); + gTunnel_4->SetMarkerColor(4); + gTunnel_5->SetMarkerColor(6); + gTunnel_6->SetMarkerColor(7); + + gTunnel_1->SetMarkerStyle(50); + gTunnel_2->SetMarkerStyle(52); + gTunnel_3->SetMarkerStyle(50); + gTunnel_4->SetMarkerStyle(52); + gTunnel_5->SetMarkerStyle(50); + gTunnel_6->SetMarkerStyle(52); + + gTunnel_1->SetMarkerSize(4); + gTunnel_2->SetMarkerSize(4); + gTunnel_3->SetMarkerSize(4); + gTunnel_4->SetMarkerSize(4); + gTunnel_5->SetMarkerSize(4); + gTunnel_6->SetMarkerSize(4); + + + TMultiGraph *mgTot = new TMultiGraph(); + mgTot->SetTitle(";Detector-Foil distance (mm);#epsilon_{e-} (%)"); + mgTot->Add(gTot1,"p"); + mgTot->Add(gTot2,"p"); + mgTot->Add(gTot3,"p"); + mgTot->Add(gTot4,"p"); + mgTot->Add(gTot5,"p"); + mgTot->Add(gTot6,"p"); + + TMultiGraph *mgDSSD1 = new TMultiGraph(); + mgDSSD1->SetTitle(";Detector-Foil distance (mm);#epsilon_{e-} (%)"); + mgDSSD1->Add(gDSSD1_1,"p"); + mgDSSD1->Add(gDSSD1_2,"p"); + mgDSSD1->Add(gDSSD1_3,"p"); + mgDSSD1->Add(gDSSD1_4,"p"); + mgDSSD1->Add(gDSSD1_5,"p"); + mgDSSD1->Add(gDSSD1_6,"p"); + + TMultiGraph *mgTunnel = new TMultiGraph(); + mgTunnel->SetTitle(";Detector-Foil distance (mm);#epsilon_{e-} (%)"); + mgTunnel->Add(gTunnel_1,"p"); + mgTunnel->Add(gTunnel_2,"p"); + mgTunnel->Add(gTunnel_3,"p"); + mgTunnel->Add(gTunnel_4,"p"); + mgTunnel->Add(gTunnel_5,"p"); + mgTunnel->Add(gTunnel_6,"p"); + + + + auto legend1 = new TLegend(0.65,0.55,0.9,0.9); + legend1->AddEntry(gTot1,"Emission of 1 electron","p"); + legend1->AddEntry(gTot2,"Emission of 1 #alpha and 1 electron","p"); + legend1->AddEntry(gTot3,"Emission of 1 #alpha and 2 electrons","p"); + legend1->AddEntry(gTot4,"Emission of 1 #alpha and 3 electrons","p"); + legend1->AddEntry(gTot5,"Emission of 1 #alpha and 4 electrons","p"); + legend1->AddEntry(gTot6,"Emission of 1 #alpha and 5 electrons","p"); + + auto legend2 = new TLegend(0.65,0.55,0.9,0.9); + legend2->AddEntry(gDSSD1_1,"Emission of 1 electron","p"); + legend2->AddEntry(gDSSD1_2,"Emission of 1 #alpha and 1 electron","p"); + legend2->AddEntry(gDSSD1_3,"Emission of 1 #alpha and 2 electrons","p"); + legend2->AddEntry(gDSSD1_4,"Emission of 1 #alpha and 3 electrons","p"); + legend2->AddEntry(gDSSD1_5,"Emission of 1 #alpha and 4 electrons","p"); + legend2->AddEntry(gDSSD1_6,"Emission of 1 #alpha and 5 electrons","p"); + + auto legend3 = new TLegend(0.65,0.55,0.9,0.9); + legend3->AddEntry(gTunnel_1,"Emission of 1 electron","p"); + legend3->AddEntry(gTunnel_2,"Emission of 1 #alpha and 1 electron","p"); + legend3->AddEntry(gTunnel_3,"Emission of 1 #alpha and 2 electrons","p"); + legend3->AddEntry(gTunnel_4,"Emission of 1 #alpha and 3 electrons","p"); + legend3->AddEntry(gTunnel_5,"Emission of 1 #alpha and 4 electrons","p"); + legend3->AddEntry(gTunnel_6,"Emission of 1 #alpha and 5 electrons","p"); + + + TCanvas *c1 = new TCanvas("EffTot","EffTot"); + mgTot->GetXaxis()->CenterTitle(); + mgTot->GetXaxis()->SetTitleSize(0.05); + mgTot->GetYaxis()->CenterTitle(); + mgTot->GetYaxis()->SetTitleSize(0.05); + mgTot->GetYaxis()->SetTitleOffset(0.75); + mgTot->Draw("ap"); + legend1->Draw(); + c1->Update(); + + TCanvas *c2 = new TCanvas("EffDSSD1","EffDSSD1"); + mgDSSD1->GetXaxis()->CenterTitle(); + mgDSSD1->GetXaxis()->SetTitleSize(0.05); + mgDSSD1->GetYaxis()->CenterTitle(); + mgDSSD1->GetYaxis()->SetTitleSize(0.05); + mgDSSD1->GetYaxis()->SetTitleOffset(0.75); + mgDSSD1->Draw("ap"); + legend2->Draw(); + c2->Update(); + + TCanvas *c3 = new TCanvas("EffTunnel","EffTunnel"); + mgTunnel->GetXaxis()->CenterTitle(); + mgTunnel->GetXaxis()->SetTitleSize(0.05); + mgTunnel->GetYaxis()->CenterTitle(); + mgTunnel->GetYaxis()->SetTitleSize(0.05); + mgTunnel->GetYaxis()->SetTitleOffset(0.75); + mgTunnel->Draw("ap"); + legend3->Draw(); + c3->Update(); + +} diff --git a/Projects/SEASON/PhysicsListOption.txt b/Projects/SEASON/PhysicsListOption.txt new file mode 100644 index 0000000000000000000000000000000000000000..444fc7cce3be22cb3a5249c7d02974ff9c8c397c --- /dev/null +++ b/Projects/SEASON/PhysicsListOption.txt @@ -0,0 +1,11 @@ +EmPhysicsList Option4 +DefaultCutOff 1 +IonBinaryCascadePhysics 0 +NPIonInelasticPhysics 0 +EmExtraPhysics 0 +HadronElasticPhysics 0 +StoppingPhysics 0 +OpticalPhysics 0 +HadronPhysicsINCLXX 0 +HadronPhysicsQGSP_BIC_HP 0 +Decay 1 diff --git a/Projects/SEASON/RunCondition/3alpha_10min.mac b/Projects/SEASON/RunCondition/3alpha_10min.mac new file mode 100644 index 0000000000000000000000000000000000000000..4fb90708915733056dc5e381131a76cc871aff96 --- /dev/null +++ b/Projects/SEASON/RunCondition/3alpha_10min.mac @@ -0,0 +1,6 @@ +/gen/open sources/Elements/239Pu.source +/run/beamOn 600000 +/gen/open sources/Elements/241Am.source +/run/beamOn 600000 +/gen/open sources/Elements/244Cm.source +/run/beamOn 600000 \ No newline at end of file diff --git a/Projects/SEASON/RunCondition/3alpha_1min.mac b/Projects/SEASON/RunCondition/3alpha_1min.mac new file mode 100644 index 0000000000000000000000000000000000000000..521446839d0bd8c4629a70da402cc845e7196804 --- /dev/null +++ b/Projects/SEASON/RunCondition/3alpha_1min.mac @@ -0,0 +1,6 @@ +/gen/open sources/Elements/239Pu.source +/run/beamOn 60000 +/gen/open sources/Elements/241Am.source +/run/beamOn 60000 +/gen/open sources/Elements/244Cm.source +/run/beamOn 60000 \ No newline at end of file diff --git a/Projects/SEASON/RunCondition/3alpha_30min.mac b/Projects/SEASON/RunCondition/3alpha_30min.mac new file mode 100644 index 0000000000000000000000000000000000000000..75f30a9a6236d48491fc9bd0873dbdbe32e182ba --- /dev/null +++ b/Projects/SEASON/RunCondition/3alpha_30min.mac @@ -0,0 +1,6 @@ +/gen/open sources/Elements/239Pu.source +/run/beamOn 1800000 +/gen/open sources/Elements/241Am.source +/run/beamOn 1800000 +/gen/open sources/Elements/244Cm.source +/run/beamOn 1800000 \ No newline at end of file diff --git a/Projects/SEASON/RunCondition/3alpha_60min.mac b/Projects/SEASON/RunCondition/3alpha_60min.mac new file mode 100644 index 0000000000000000000000000000000000000000..0fee90c0a224e3b11f889c44b2fd4d4429ec2b26 --- /dev/null +++ b/Projects/SEASON/RunCondition/3alpha_60min.mac @@ -0,0 +1,6 @@ +/gen/open sources/Elements/239Pu.source +/run/beamOn 3600000 +/gen/open sources/Elements/241Am.source +/run/beamOn 3600000 +/gen/open sources/Elements/244Cm.source +/run/beamOn 3600000 \ No newline at end of file diff --git a/Projects/SEASON/RunCondition/I262.mac b/Projects/SEASON/RunCondition/I262.mac new file mode 100644 index 0000000000000000000000000000000000000000..2e3489d355a996070bab5f8842a95f2c04464f47 --- /dev/null +++ b/Projects/SEASON/RunCondition/I262.mac @@ -0,0 +1,10 @@ +/gen/open sources/Elements/224Ra.source +/run/beamOn 87000 +/gen/open sources/Elements/226Th.source +/run/beamOn 278000 +/gen/open sources/Elements/225Th.source +/run/beamOn 896000 +/gen/open sources/Elements/226Pa.source +/run/beamOn 140000 +/gen/open sources/Elements/225Pa.source +/run/beamOn 1167000 \ No newline at end of file diff --git a/Projects/SEASON/RunCondition/Run.mac b/Projects/SEASON/RunCondition/Run.mac new file mode 100644 index 0000000000000000000000000000000000000000..0389c76d6d7f2e9cc4d3070f2f48faf7af71cfdf --- /dev/null +++ b/Projects/SEASON/RunCondition/Run.mac @@ -0,0 +1,4 @@ +/random/setSeeds 26855 18910 +/run/initialize +/run/beamOn 1000000 +exit diff --git a/Projects/SEASON/RunToTreat.txt b/Projects/SEASON/RunToTreat.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f6d4d10bddb5b6ff09622037450631ffb088d8e --- /dev/null +++ b/Projects/SEASON/RunToTreat.txt @@ -0,0 +1,8 @@ +TTreeName + SimulatedTree +RootFileName + /local/home/admin-local/Public/nptool/Outputs/Simulation/3alpha_60min_2mm_Target.root + %/local/home/admin-local/Public/nptool/Outputs/Simulation/3alpha_60min_2mm_NoTarget.root + %/local/home/admin-local/Public/nptool/Outputs/Simulation/test.root + %/local/home/admin-local/Public/nptool/Outputs/Simulation/3alpha_60min_2mm_target.root + %/local/home/admin-local/Public/nptool/Outputs/Simulation/Calib_2mm_60min.root diff --git a/Projects/SEASON/launch_alpha_geometries.sh b/Projects/SEASON/launch_alpha_geometries.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae4140e2704b0d9a3cb863433b9de762cf3c50d5 --- /dev/null +++ b/Projects/SEASON/launch_alpha_geometries.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Launch npsimulation + +INPUT_File='./Detector/VariableGeom.detector' +SOURCE_FILE='./sources/alpha.source' +G4_MAC_FILE='./RunCondition/Run.mac' +OUT_DIR='Alpha/FinalAlphaGeometries' + +PARTICLE='alpha' +RANDOM=$$ + +loop_geo() { + + for DIST in 2 3 4 5 6 7 8 9 10 12 15 20 25 30 40 50; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR'/Alpha_'$DIST'mm.root' -B $G4_MAC_FILE + done +} + +loop_geo + diff --git a/Projects/SEASON/launch_electron_geometries.sh b/Projects/SEASON/launch_electron_geometries.sh new file mode 100755 index 0000000000000000000000000000000000000000..f8d9401b7de1a917422b884d49c3d291e0cfe90f --- /dev/null +++ b/Projects/SEASON/launch_electron_geometries.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Launch npsimulation + +INPUT_File='./Detector/VariableGeom.detector' +SOURCE_FILE='./sources/electron.source' +G4_MAC_FILE='./RunCondition/run_electron.mac' +OUT_DIR='Electron/FinalElectronGeometries' + +PARTICLE='electron' +RANDOM=$$ + +loop_geo() { + + for DIST in 2 3 4 5 6 7 8 9 10 12 15 20 25 30 40 50; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR'/Electron_'$DIST'mm.root' -B $G4_MAC_FILE + done +} + +loop_geo + diff --git a/Projects/SEASON/launch_multiple_electrons_geometries.sh b/Projects/SEASON/launch_multiple_electrons_geometries.sh new file mode 100755 index 0000000000000000000000000000000000000000..5df273400f445ff5b6871398816966e8b9eb6911 --- /dev/null +++ b/Projects/SEASON/launch_multiple_electrons_geometries.sh @@ -0,0 +1,130 @@ +#!/bin/bash + +# Launch npsimulation + +INPUT_File='./Detector/VariableGeom.detector' +SOURCE_FILE='./sources/alpha_electron_cascade_5mm.source' +EMISSION_FILE='./sources/alpha_electron_cascade.txt' +G4_MAC_FILE='./RunCondition/Run.mac' +OUT_DIR='Electron/MultipleEmissionMultipleGeometries' + +PARTICLE='electron' +RANDOM=$$ + +loop_geo() { + echo "Multiplicity 1" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/0Alpha1Electron_"$DIST"mm.root" -B $G4_MAC_FILE + done + + echo "Multiplicity 2" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR'/1Alpha1Electron_'$DIST'mm.root' -B $G4_MAC_FILE + done + + + echo "Multiplicity 3" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha2Electron_"$DIST"mm.root" -B $G4_MAC_FILE + done + + echo "Multiplicity 4" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "electron 0.25 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha3Electron_"$DIST"mm.root" -B $G4_MAC_FILE + done + + echo "Multiplicity 5" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "electron 0.25 0" >> $EMISSION_FILE + echo "electron 0.5 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha4Electron_"$DIST"mm.root" -B $G4_MAC_FILE + done + + echo "Multiplicity 6" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.125 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "electron 0.25 0" >> $EMISSION_FILE + echo "electron 0.5 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 100000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha5Electron_"$DIST"mm.root" -B $G4_MAC_FILE + done +} + +loop_geo + diff --git a/Projects/SEASON/launch_multiple_electrons_geometries_multithread.sh b/Projects/SEASON/launch_multiple_electrons_geometries_multithread.sh new file mode 100755 index 0000000000000000000000000000000000000000..75c52e1d280390716d10098ec56977a8cf149045 --- /dev/null +++ b/Projects/SEASON/launch_multiple_electrons_geometries_multithread.sh @@ -0,0 +1,159 @@ +#!/bin/bash + +# Launch npsimulation + +INPUT_File='./Detector/VariableGeom.detector' +SOURCE_FILE='./sources/alpha_electron_cascade_5mm.source' +EMISSION_FILE='./sources/alpha_electron_cascade.txt' +G4_MAC_FILE='./RunCondition/Run.mac' +#OUT_DIR='Electron/MultipleEmissionMultipleGeometries' +OUT_DIR='Electron/Test' + +RANDOM=$$ + +loop_geo() { + echo "Multiplicity 1" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 1000000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + if [ $DIST -eq 15 ]; then + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/0Alpha1Electron_"$DIST"mm.root" -B $G4_MAC_FILE + else + nohup npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/0Alpha1Electron_"$DIST"mm.root" -B $G4_MAC_FILE & + sleep 30 + fi + done + + echo "Multiplicity 2" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 1000000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + if [ $DIST -eq 15 ]; then + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha1Electron_"$DIST"mm.root" -B $G4_MAC_FILE + else + nohup npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha1Electron_"$DIST"mm.root" -B $G4_MAC_FILE & + sleep 30 + fi + done + + + echo "Multiplicity 3" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 1000000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + if [ $DIST -eq 15 ]; then + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha2Electron_"$DIST"mm.root" -B $G4_MAC_FILE + else + nohup npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha2Electron_"$DIST"mm.root" -B $G4_MAC_FILE & + sleep 30 + fi + done + + echo "Multiplicity 4" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "electron 0.25 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 1000000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + if [ $DIST -eq 15 ]; then + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha3Electron_"$DIST"mm.root" -B $G4_MAC_FILE + else + nohup npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha3Electron_"$DIST"mm.root" -B $G4_MAC_FILE & + sleep 30 + fi + done + + echo "Multiplicity 5" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "electron 0.25 0" >> $EMISSION_FILE + echo "electron 0.5 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 1000000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + if [ $DIST -eq 15 ]; then + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha4Electron_"$DIST"mm.root" -B $G4_MAC_FILE + else + nohup npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha4Electron_"$DIST"mm.root" -B $G4_MAC_FILE & + sleep 30 + fi + done + + echo "Multiplicity 6" > $EMISSION_FILE + echo "electron 0.05 0" >> $EMISSION_FILE + echo "electron 0.125 0" >> $EMISSION_FILE + echo "electron 0.15 0" >> $EMISSION_FILE + echo "electron 0.25 0" >> $EMISSION_FILE + echo "electron 0.5 0" >> $EMISSION_FILE + echo "alpha 8 0" >> $EMISSION_FILE + + for DIST in 2 3 4 5 7 10 15; do + + echo "/random/setSeeds " $RANDOM $RANDOM > $G4_MAC_FILE + echo "/run/initialize" >> $G4_MAC_FILE + echo "/run/beamOn 1000000" >> $G4_MAC_FILE + echo "exit" >> $G4_MAC_FILE + + sed -i -e '12c \ DSSD1Dist= '$DIST' mm' $INPUT_File + sed -i -e '13c \ TunnelDist= '$DIST' mm' $INPUT_File + + if [ $DIST -eq 15 ]; then + npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha5Electron_"$DIST"mm.root" -B $G4_MAC_FILE + else + nohup npsimulation -E $SOURCE_FILE -D $INPUT_File -O $OUT_DIR"/1Alpha5Electron_"$DIST"mm.root" -B $G4_MAC_FILE & + sleep 30 + fi + done +} + +loop_geo + diff --git a/Projects/SEASON/nohup.out b/Projects/SEASON/nohup.out new file mode 100644 index 0000000000000000000000000000000000000000..2382825f62a96e5eb79e6e30962a0ae29925ed7e --- /dev/null +++ b/Projects/SEASON/nohup.out @@ -0,0 +1,7864 @@ +///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_2mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 2.0000 + TunnelDist (mm): 2.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// +Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m +Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;32m ******* Event: 100 | Progress: 100.0% | Rate: 2.3k evt/s | Remain: 0s *******[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 100 + -> Number of bites written to file: 912 +///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_3mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 3.0000 + TunnelDist (mm): 3.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// +Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m +[0mWarning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;32m ******* Event: 100 | Progress: 100.0% | Rate: 2.0k evt/s | Remain: 0s *******[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 100 + -> Number of bites written to file: 999 +///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_2mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 2.0000 + TunnelDist (mm): 2.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// +Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m +Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 3464 | Progress: 0.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 7319 | Progress: 0.0% | Rate: 2.4k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 11470 | Progress: 1.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 15601 | Progress: 1.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 19818 | Progress: 1.0% | Rate: 3.3k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 24006 | Progress: 2.0% | Rate: 3.4k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 28287 | Progress: 2.0% | Rate: 3.5k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 32387 | Progress: 3.0% | Rate: 3.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 36451 | Progress: 3.0% | Rate: 3.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 40674 | Progress: 4.0% | Rate: 3.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 44863 | Progress: 4.0% | Rate: 3.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 49047 | Progress: 4.0% | Rate: 3.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 53272 | Progress: 5.0% | Rate: 3.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 57412 | Progress: 5.0% | Rate: 3.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 61602 | Progress: 6.0% | Rate: 3.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 65718 | Progress: 6.0% | Rate: 3.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 69975 | Progress: 6.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 74173 | Progress: 7.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 78367 | Progress: 7.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 82553 | Progress: 8.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 86344 | Progress: 8.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 90197 | Progress: 9.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 94315 | Progress: 9.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 98449 | Progress: 9.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 102724 | Progress: 10.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_2mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 2.0000 + TunnelDist (mm): 2.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ------- Event: 106797 | Progress: 10.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 110960 | Progress: 11.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 114981 | Progress: 11.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 119067 | Progress: 11.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 123314 | Progress: 12.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ******* Event: 127350 | Progress: 12.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range [1;31m ------- Event: 131488 | Progress: 13.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 135636 | Progress: 13.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 4100 | Progress: 0.0% | Rate: 2.0k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 139631 | Progress: 13.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 8155 | Progress: 0.0% | Rate: 2.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 143626 | Progress: 14.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 12320 | Progress: 1.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 147649 | Progress: 14.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 16411 | Progress: 1.0% | Rate: 3.3k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 151588 | Progress: 15.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 20480 | Progress: 2.0% | Rate: 3.4k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 155650 | Progress: 15.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 24513 | Progress: 2.0% | Rate: 3.5k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 159727 | Progress: 15.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 28466 | Progress: 2.0% | Rate: 3.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 163737 | Progress: 16.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 32386 | Progress: 3.0% | Rate: 3.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 167388 | Progress: 16.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 36327 | Progress: 3.0% | Rate: 3.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 171366 | Progress: 17.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 40202 | Progress: 4.0% | Rate: 3.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 175245 | Progress: 17.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 44064 | Progress: 4.0% | Rate: 3.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 179278 | Progress: 17.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 48058 | Progress: 4.0% | Rate: 3.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 183435 | Progress: 18.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 52059 | Progress: 5.0% | Rate: 3.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 187415 | Progress: 18.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 55899 | Progress: 5.0% | Rate: 3.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 191295 | Progress: 19.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 59737 | Progress: 5.0% | Rate: 3.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 195327 | Progress: 19.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 63563 | Progress: 6.0% | Rate: 3.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 199147 | Progress: 19.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 67481 | Progress: 6.0% | Rate: 3.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 202473 | Progress: 20.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 71288 | Progress: 7.0% | Rate: 3.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 206470 | Progress: 20.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 75116 | Progress: 7.0% | Rate: 3.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 210323 | Progress: 21.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 78956 | Progress: 7.0% | Rate: 3.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 214341 | Progress: 21.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 82777 | Progress: 8.0% | Rate: 3.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 218115 | Progress: 21.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 86655 | Progress: 8.0% | Rate: 3.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 222019 | Progress: 22.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 90575 | Progress: 9.0% | Rate: 3.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 225920 | Progress: 22.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 94352 | Progress: 9.0% | Rate: 3.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 229784 | Progress: 22.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 98212 | Progress: 9.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_3mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 3.0000 + TunnelDist (mm): 3.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ------- Event: 233614 | Progress: 23.0% | Rate: 4.0k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 102033 | Progress: 10.0% | Rate: 3.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 237459 | Progress: 23.0% | Rate: 4.0k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 105780 | Progress: 10.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 240689 | Progress: 24.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 109503 | Progress: 10.0% | Rate: 3.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 244444 | Progress: 24.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 113134 | Progress: 11.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 248244 | Progress: 24.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 116795 | Progress: 11.0% | Rate: 3.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 252220 | Progress: 25.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 120521 | Progress: 12.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ------- Event: 255955 | Progress: 25.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 124131 | Progress: 12.0% | Rate: 3.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 259486 | Progress: 25.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 127570 | Progress: 12.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m [0mWarning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ------- Event: 262862 | Progress: 26.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 130966 | Progress: 13.0% | Rate: 3.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 3414 | Progress: 0.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 266506 | Progress: 26.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 134413 | Progress: 13.0% | Rate: 3.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 6919 | Progress: 0.0% | Rate: 2.3k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 270017 | Progress: 27.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 137979 | Progress: 13.0% | Rate: 3.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 10364 | Progress: 1.0% | Rate: 2.6k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 273256 | Progress: 27.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 141456 | Progress: 14.0% | Rate: 3.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 13787 | Progress: 1.0% | Rate: 2.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 276590 | Progress: 27.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 144967 | Progress: 14.0% | Rate: 3.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 17232 | Progress: 1.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 279937 | Progress: 27.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 148143 | Progress: 14.0% | Rate: 3.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 19980 | Progress: 1.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 283343 | Progress: 28.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 151476 | Progress: 15.0% | Rate: 3.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 23342 | Progress: 2.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 286936 | Progress: 28.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 155142 | Progress: 15.0% | Rate: 3.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 26666 | Progress: 2.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 290135 | Progress: 29.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 158337 | Progress: 15.0% | Rate: 3.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 29985 | Progress: 2.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 293545 | Progress: 29.0% | Rate: 3.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 161604 | Progress: 16.0% | Rate: 3.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 33281 | Progress: 3.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 297078 | Progress: 29.0% | Rate: 3.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 164974 | Progress: 16.0% | Rate: 3.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 36760 | Progress: 3.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 300374 | Progress: 30.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 168090 | Progress: 16.0% | Rate: 3.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 40052 | Progress: 4.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 303789 | Progress: 30.0% | Rate: 3.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 171437 | Progress: 17.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 43379 | Progress: 4.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 307210 | Progress: 30.0% | Rate: 3.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 174951 | Progress: 17.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 46917 | Progress: 4.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 310082 | Progress: 31.0% | Rate: 3.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 178311 | Progress: 17.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 50251 | Progress: 5.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 313577 | Progress: 31.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 181644 | Progress: 18.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 53739 | Progress: 5.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 317050 | Progress: 31.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 185153 | Progress: 18.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 57178 | Progress: 5.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 320578 | Progress: 32.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 188714 | Progress: 18.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 60602 | Progress: 6.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 324062 | Progress: 32.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 192179 | Progress: 19.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 64007 | Progress: 6.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 327613 | Progress: 32.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 195603 | Progress: 19.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_4mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 4.0000 + TunnelDist (mm): 4.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ------- Event: 67185 | Progress: 6.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 330886 | Progress: 33.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 199012 | Progress: 19.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 70578 | Progress: 7.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 333936 | Progress: 33.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 202039 | Progress: 20.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 73874 | Progress: 7.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 337378 | Progress: 33.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 205310 | Progress: 20.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 76992 | Progress: 7.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 340815 | Progress: 34.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 208642 | Progress: 20.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 80226 | Progress: 8.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 344190 | Progress: 34.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 211768 | Progress: 21.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 83497 | Progress: 8.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 347502 | Progress: 34.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 214930 | Progress: 21.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 86888 | Progress: 8.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 350675 | Progress: 35.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 217805 | Progress: 21.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ******* Event: 90104 | Progress: 9.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 353874 | Progress: 35.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 221154 | Progress: 22.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 93354 | Progress: 9.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for [1;31m ------- Event: 357035 | Progress: 35.0% | Rate: 3.8k evt/s | Remain: 2min -------[0m the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ------- Event: 224442 | Progress: 22.0% | Rate: 3.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 96643 | Progress: 9.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 360323 | Progress: 36.0% | Rate: 3.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 3326 | Progress: 0.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 227740 | Progress: 22.0% | Rate: 3.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 99911 | Progress: 9.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 363628 | Progress: 36.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 6627 | Progress: 0.0% | Rate: 2.2k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 230982 | Progress: 23.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 103079 | Progress: 10.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 366792 | Progress: 36.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 9939 | Progress: 0.0% | Rate: 2.5k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 234132 | Progress: 23.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 106460 | Progress: 10.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 369324 | Progress: 36.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 13250 | Progress: 1.0% | Rate: 2.6k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 237425 | Progress: 23.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 109723 | Progress: 10.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 372613 | Progress: 37.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 16674 | Progress: 1.0% | Rate: 2.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 240058 | Progress: 24.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 112932 | Progress: 11.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 375628 | Progress: 37.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 19949 | Progress: 1.0% | Rate: 2.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 243127 | Progress: 24.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 115741 | Progress: 11.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 378377 | Progress: 37.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 22673 | Progress: 2.0% | Rate: 2.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 245796 | Progress: 24.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 118627 | Progress: 11.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 381439 | Progress: 38.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 25952 | Progress: 2.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 249029 | Progress: 24.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 121866 | Progress: 12.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 384669 | Progress: 38.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 29255 | Progress: 2.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 252253 | Progress: 25.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 125086 | Progress: 12.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 387885 | Progress: 38.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 32684 | Progress: 3.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 255568 | Progress: 25.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 128080 | Progress: 12.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 390951 | Progress: 39.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 35806 | Progress: 3.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 258516 | Progress: 25.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 131270 | Progress: 13.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 394226 | Progress: 39.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 38960 | Progress: 3.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 261631 | Progress: 26.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 134395 | Progress: 13.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 397479 | Progress: 39.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 42223 | Progress: 4.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 264852 | Progress: 26.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 137563 | Progress: 13.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 400795 | Progress: 40.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 45468 | Progress: 4.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 268015 | Progress: 26.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 140746 | Progress: 14.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 403957 | Progress: 40.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 48777 | Progress: 4.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 271219 | Progress: 27.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 143968 | Progress: 14.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 406781 | Progress: 40.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 52043 | Progress: 5.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 273972 | Progress: 27.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 147243 | Progress: 14.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 409909 | Progress: 40.0% | Rate: 3.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 55260 | Progress: 5.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 276865 | Progress: 27.0% | Rate: 3.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 150399 | Progress: 15.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 412972 | Progress: 41.0% | Rate: 3.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 58530 | Progress: 5.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 279997 | Progress: 27.0% | Rate: 3.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 153681 | Progress: 15.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 416062 | Progress: 41.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 61849 | Progress: 6.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 283084 | Progress: 28.0% | Rate: 3.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 156924 | Progress: 15.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 419195 | Progress: 41.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 65167 | Progress: 6.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 286202 | Progress: 28.0% | Rate: 3.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 159947 | Progress: 15.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 422307 | Progress: 42.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 68390 | Progress: 6.0% | Rate: 3.1k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 288955 | Progress: 28.0% | Rate: 3.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 162683 | Progress: 16.0% | Rate: 3.2k evt/s | Remain: 4min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_5mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 5.0000 + TunnelDist (mm): 5.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ------- Event: 424707 | Progress: 42.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 71490 | Progress: 7.0% | Rate: 3.1k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 291359 | Progress: 29.0% | Rate: 3.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 164415 | Progress: 16.0% | Rate: 3.2k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 427641 | Progress: 42.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 74314 | Progress: 7.0% | Rate: 3.1k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 292969 | Progress: 29.0% | Rate: 3.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 166075 | Progress: 16.0% | Rate: 3.1k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 430627 | Progress: 43.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 77271 | Progress: 7.0% | Rate: 3.1k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 294578 | Progress: 29.0% | Rate: 3.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 167718 | Progress: 16.0% | Rate: 3.1k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 433800 | Progress: 43.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 80293 | Progress: 8.0% | Rate: 3.1k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 296273 | Progress: 29.0% | Rate: 3.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 169306 | Progress: 16.0% | Rate: 3.1k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 436872 | Progress: 43.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 82902 | Progress: 8.0% | Rate: 3.1k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 298143 | Progress: 29.0% | Rate: 3.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 170927 | Progress: 17.0% | Rate: 3.1k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 439691 | Progress: 43.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 84612 | Progress: 8.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 301113 | Progress: 30.0% | Rate: 3.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 172599 | Progress: 17.0% | Rate: 3.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 442537 | Progress: 44.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 86378 | Progress: 8.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 304289 | Progress: 30.0% | Rate: 3.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 174409 | Progress: 17.0% | Rate: 3.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 445512 | Progress: 44.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + [1;31m ******* Event: 88088 | Progress: 8.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 307055 | Progress: 30.0% | Rate: 3.3k evt/s | Remain: 3min *******[0m +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ------- Event: 176035 | Progress: 17.0% | Rate: 3.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 448758 | Progress: 44.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 89909 | Progress: 8.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 309713 | Progress: 30.0% | Rate: 3.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 177711 | Progress: 17.0% | Rate: 3.0k evt/s | Remain: 4min *******[0m [0mWarning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 451917 | Progress: 45.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 91685 | Progress: 9.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 312799 | Progress: 31.0% | Rate: 3.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 179370 | Progress: 17.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 3092 | Progress: 0.0% | Rate: 1.5k evt/s | Remain: 10min *******[0m [1;31m ------- Event: 454981 | Progress: 45.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 93727 | Progress: 9.0% | Rate: 2.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 315470 | Progress: 31.0% | Rate: 3.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 181047 | Progress: 18.0% | Rate: 2.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 6189 | Progress: 0.0% | Rate: 2.1k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 458056 | Progress: 45.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 96862 | Progress: 9.0% | Rate: 2.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 317087 | Progress: 31.0% | Rate: 3.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 182797 | Progress: 18.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 9330 | Progress: 0.0% | Rate: 2.3k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 461232 | Progress: 46.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 100033 | Progress: 10.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 318746 | Progress: 31.0% | Rate: 3.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 184446 | Progress: 18.0% | Rate: 2.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 12477 | Progress: 1.0% | Rate: 2.5k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 464391 | Progress: 46.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 103312 | Progress: 10.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 320424 | Progress: 32.0% | Rate: 3.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 186054 | Progress: 18.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 15718 | Progress: 1.0% | Rate: 2.6k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 467504 | Progress: 46.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 106599 | Progress: 10.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 322170 | Progress: 32.0% | Rate: 3.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 187805 | Progress: 18.0% | Rate: 2.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 470659 | Progress: 47.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 19059 | Progress: 1.0% | Rate: 2.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 109793 | Progress: 10.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 323778 | Progress: 32.0% | Rate: 3.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 189499 | Progress: 18.0% | Rate: 2.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 473851 | Progress: 47.0% | Rate: 3.6k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 22320 | Progress: 2.0% | Rate: 2.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 113057 | Progress: 11.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 325463 | Progress: 32.0% | Rate: 3.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 191125 | Progress: 19.0% | Rate: 2.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 476420 | Progress: 47.0% | Rate: 3.6k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 25712 | Progress: 2.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 116323 | Progress: 11.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 327117 | Progress: 32.0% | Rate: 3.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 192863 | Progress: 19.0% | Rate: 2.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 479616 | Progress: 47.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 28997 | Progress: 2.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 119498 | Progress: 11.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 328749 | Progress: 32.0% | Rate: 3.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 194537 | Progress: 19.0% | Rate: 2.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 482464 | Progress: 48.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 32074 | Progress: 3.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 122512 | Progress: 12.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 330281 | Progress: 33.0% | Rate: 3.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 196106 | Progress: 19.0% | Rate: 2.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 485424 | Progress: 48.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 35241 | Progress: 3.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 125732 | Progress: 12.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 331855 | Progress: 33.0% | Rate: 3.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 197359 | Progress: 19.0% | Rate: 2.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 488519 | Progress: 48.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 38298 | Progress: 3.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 129023 | Progress: 12.0% | Rate: 2.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 333196 | Progress: 33.0% | Rate: 3.1k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 199130 | Progress: 19.0% | Rate: 2.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 491703 | Progress: 49.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 41443 | Progress: 4.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 132170 | Progress: 13.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 334826 | Progress: 33.0% | Rate: 3.1k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 200752 | Progress: 20.0% | Rate: 2.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 494764 | Progress: 49.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 44669 | Progress: 4.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 135429 | Progress: 13.0% | Rate: 2.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 336509 | Progress: 33.0% | Rate: 3.1k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 202408 | Progress: 20.0% | Rate: 2.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 497897 | Progress: 49.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 48015 | Progress: 4.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 138555 | Progress: 13.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 338211 | Progress: 33.0% | Rate: 3.1k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 204124 | Progress: 20.0% | Rate: 2.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 500639 | Progress: 50.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 51290 | Progress: 5.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 141693 | Progress: 14.0% | Rate: 3.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 339817 | Progress: 33.0% | Rate: 3.1k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 205744 | Progress: 20.0% | Rate: 2.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 503722 | Progress: 50.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 54625 | Progress: 5.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 144702 | Progress: 14.0% | Rate: 3.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 341480 | Progress: 34.0% | Rate: 3.1k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 207402 | Progress: 20.0% | Rate: 2.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 506787 | Progress: 50.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 57916 | Progress: 5.0% | Rate: 3.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 147900 | Progress: 14.0% | Rate: 3.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 343150 | Progress: 34.0% | Rate: 3.1k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 208995 | Progress: 20.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 509916 | Progress: 50.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 61327 | Progress: 6.0% | Rate: 3.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 151145 | Progress: 15.0% | Rate: 3.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 344745 | Progress: 34.0% | Rate: 3.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 210579 | Progress: 21.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 512696 | Progress: 51.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 64378 | Progress: 6.0% | Rate: 3.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 153883 | Progress: 15.0% | Rate: 3.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 346316 | Progress: 34.0% | Rate: 3.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 212517 | Progress: 21.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 65874 | Progress: 6.0% | Rate: 3.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 515189 | Progress: 51.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 155418 | Progress: 15.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 348793 | Progress: 34.0% | Rate: 3.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 214993 | Progress: 21.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 67491 | Progress: 6.0% | Rate: 2.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 517933 | Progress: 51.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 156989 | Progress: 15.0% | Rate: 2.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 351343 | Progress: 35.0% | Rate: 3.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 217417 | Progress: 21.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_7mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 7.0000 + TunnelDist (mm): 7.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ******* Event: 69038 | Progress: 6.0% | Rate: 2.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 519863 | Progress: 51.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 158595 | Progress: 15.0% | Rate: 2.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 353668 | Progress: 35.0% | Rate: 3.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 219465 | Progress: 21.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 70577 | Progress: 7.0% | Rate: 2.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 522028 | Progress: 52.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 160114 | Progress: 16.0% | Rate: 2.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 355261 | Progress: 35.0% | Rate: 3.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 222172 | Progress: 22.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 72185 | Progress: 7.0% | Rate: 2.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 524924 | Progress: 52.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 161708 | Progress: 16.0% | Rate: 2.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 357053 | Progress: 35.0% | Rate: 3.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 225179 | Progress: 22.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 73836 | Progress: 7.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 527943 | Progress: 52.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 163282 | Progress: 16.0% | Rate: 2.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 358910 | Progress: 35.0% | Rate: 3.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 228172 | Progress: 22.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 75458 | Progress: 7.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 530960 | Progress: 53.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 164890 | Progress: 16.0% | Rate: 2.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 360798 | Progress: 36.0% | Rate: 3.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 230523 | Progress: 23.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 77112 | Progress: 7.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 533523 | Progress: 53.0% | Rate: 3.5k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 167393 | Progress: 16.0% | Rate: 2.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 362416 | Progress: 36.0% | Rate: 3.0k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 232050 | Progress: 23.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 78896 | Progress: 7.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 535626 | Progress: 53.0% | Rate: 3.5k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 169601 | Progress: 16.0% | Rate: 2.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 364202 | Progress: 36.0% | Rate: 3.0k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 233503 | Progress: 23.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 80756 | Progress: 8.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 537393 | Progress: 53.0% | Rate: 3.4k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 171154 | Progress: 17.0% | Rate: 2.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 365773 | Progress: 36.0% | Rate: 2.9k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 235198 | Progress: 23.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 82439 | Progress: 8.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 539044 | Progress: 53.0% | Rate: 3.4k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 367495 | Progress: 36.0% | Rate: 2.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 172607 | Progress: 17.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 237130 | Progress: 23.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 85261 | Progress: 8.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 541837 | Progress: 54.0% | Rate: 3.4k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 368729 | Progress: 36.0% | Rate: 2.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 174293 | Progress: 17.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 238702 | Progress: 23.0% | Rate: 2.6k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 87695 | Progress: 8.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 544149 | Progress: 54.0% | Rate: 3.4k evt/s | Remain: 2min -------[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + [1;31m ------- Event: 370111 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min -------[0m +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ------- Event: 175898 | Progress: 17.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 240226 | Progress: 24.0% | Rate: 2.6k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 90604 | Progress: 9.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 545846 | Progress: 54.0% | Rate: 3.4k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 371660 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 177606 | Progress: 17.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 241708 | Progress: 24.0% | Rate: 2.5k evt/s | Remain: 4min -------[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for [1;31m ******* Event: 93736 | Progress: 9.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 547382 | Progress: 54.0% | Rate: 3.4k evt/s | Remain: 2min -------[0m the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ------- Event: 373257 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 179245 | Progress: 17.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 243298 | Progress: 24.0% | Rate: 2.5k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 96796 | Progress: 9.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 549034 | Progress: 54.0% | Rate: 3.4k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 3156 | Progress: 0.0% | Rate: 1.6k evt/s | Remain: 10min *******[0m [1;31m ******* Event: 374772 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 180974 | Progress: 18.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 244810 | Progress: 24.0% | Rate: 2.5k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 99771 | Progress: 9.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 550627 | Progress: 55.0% | Rate: 3.4k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 6070 | Progress: 0.0% | Rate: 2.0k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 376394 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 182668 | Progress: 18.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 246400 | Progress: 24.0% | Rate: 2.5k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 102766 | Progress: 10.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 552314 | Progress: 55.0% | Rate: 3.4k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 9094 | Progress: 0.0% | Rate: 2.3k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 378017 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 184380 | Progress: 18.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 247906 | Progress: 24.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 105632 | Progress: 10.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 553956 | Progress: 55.0% | Rate: 3.4k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 11893 | Progress: 1.0% | Rate: 2.4k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 379575 | Progress: 37.0% | Rate: 2.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 186034 | Progress: 18.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 249461 | Progress: 24.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 108758 | Progress: 10.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 555525 | Progress: 55.0% | Rate: 3.3k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 14974 | Progress: 1.0% | Rate: 2.5k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 381118 | Progress: 38.0% | Rate: 2.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 187707 | Progress: 18.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 251025 | Progress: 25.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 111910 | Progress: 11.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 557100 | Progress: 55.0% | Rate: 3.3k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 17985 | Progress: 1.0% | Rate: 2.6k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 382621 | Progress: 38.0% | Rate: 2.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 189409 | Progress: 18.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 252576 | Progress: 25.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 114862 | Progress: 11.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 558741 | Progress: 55.0% | Rate: 3.3k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 20980 | Progress: 2.0% | Rate: 2.6k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 384144 | Progress: 38.0% | Rate: 2.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 191120 | Progress: 19.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 254089 | Progress: 25.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 117591 | Progress: 11.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 560285 | Progress: 56.0% | Rate: 3.3k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 23801 | Progress: 2.0% | Rate: 2.6k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 385696 | Progress: 38.0% | Rate: 2.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 192730 | Progress: 19.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 255618 | Progress: 25.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 120651 | Progress: 12.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 561919 | Progress: 56.0% | Rate: 3.3k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 26821 | Progress: 2.0% | Rate: 2.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 387184 | Progress: 38.0% | Rate: 2.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 194454 | Progress: 19.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 257118 | Progress: 25.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 123641 | Progress: 12.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 563549 | Progress: 56.0% | Rate: 3.3k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 29660 | Progress: 2.0% | Rate: 2.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 388689 | Progress: 38.0% | Rate: 2.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 196160 | Progress: 19.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 258571 | Progress: 25.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 126169 | Progress: 12.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 565091 | Progress: 56.0% | Rate: 3.3k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 32126 | Progress: 3.0% | Rate: 2.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 390171 | Progress: 39.0% | Rate: 2.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 197739 | Progress: 19.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 260056 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 129033 | Progress: 12.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 566706 | Progress: 56.0% | Rate: 3.3k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 35096 | Progress: 3.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 391683 | Progress: 39.0% | Rate: 2.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 199315 | Progress: 19.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 261482 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 131526 | Progress: 13.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 568983 | Progress: 56.0% | Rate: 3.3k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 36730 | Progress: 3.0% | Rate: 2.6k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 393192 | Progress: 39.0% | Rate: 2.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 200931 | Progress: 20.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 262946 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 134597 | Progress: 13.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 571141 | Progress: 57.0% | Rate: 3.3k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 38390 | Progress: 3.0% | Rate: 2.6k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 394719 | Progress: 39.0% | Rate: 2.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 202615 | Progress: 20.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 264215 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 137380 | Progress: 13.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 573772 | Progress: 57.0% | Rate: 3.3k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 40094 | Progress: 4.0% | Rate: 2.5k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 396298 | Progress: 39.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 204294 | Progress: 20.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/0Alpha1Electron_10mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 10.0000 + TunnelDist (mm): 10.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ------- Event: 265669 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 139148 | Progress: 13.0% | Rate: 2.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 576126 | Progress: 57.0% | Rate: 3.3k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 41715 | Progress: 4.0% | Rate: 2.5k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 397837 | Progress: 39.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 205885 | Progress: 20.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 267365 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 141191 | Progress: 14.0% | Rate: 2.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 577628 | Progress: 57.0% | Rate: 3.2k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 43337 | Progress: 4.0% | Rate: 2.4k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 399416 | Progress: 39.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 207542 | Progress: 20.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 269110 | Progress: 26.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 142781 | Progress: 14.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 579660 | Progress: 57.0% | Rate: 3.2k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 45011 | Progress: 4.0% | Rate: 2.4k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 401160 | Progress: 40.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 208882 | Progress: 20.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 270522 | Progress: 27.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 144281 | Progress: 14.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 581322 | Progress: 58.0% | Rate: 3.2k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 46598 | Progress: 4.0% | Rate: 2.3k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 210123 | Progress: 21.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 402777 | Progress: 40.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 272004 | Progress: 27.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 145905 | Progress: 14.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 583123 | Progress: 58.0% | Rate: 3.2k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 49138 | Progress: 4.0% | Rate: 2.3k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 211693 | Progress: 21.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 404142 | Progress: 40.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 273507 | Progress: 27.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 147657 | Progress: 14.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 50895 | Progress: 5.0% | Rate: 2.3k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 584607 | Progress: 58.0% | Rate: 3.2k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 213253 | Progress: 21.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 405562 | Progress: 40.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 275145 | Progress: 27.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 149646 | Progress: 14.0% | Rate: 2.6k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 52664 | Progress: 5.0% | Rate: 2.3k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 586179 | Progress: 58.0% | Rate: 3.2k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 215552 | Progress: 21.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 407260 | Progress: 40.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 276938 | Progress: 27.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 151259 | Progress: 15.0% | Rate: 2.6k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 54196 | Progress: 5.0% | Rate: 2.3k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 587661 | Progress: 58.0% | Rate: 3.2k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 217354 | Progress: 21.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 408776 | Progress: 40.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 278884 | Progress: 27.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 152948 | Progress: 15.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 55877 | Progress: 5.0% | Rate: 2.2k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 589206 | Progress: 58.0% | Rate: 3.2k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 219144 | Progress: 21.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 410391 | Progress: 41.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 281603 | Progress: 28.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 154636 | Progress: 15.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 57580 | Progress: 5.0% | Rate: 2.2k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 590774 | Progress: 59.0% | Rate: 3.2k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 220857 | Progress: 22.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 412039 | Progress: 41.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 283401 | Progress: 28.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 156255 | Progress: 15.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 59223 | Progress: 5.0% | Rate: 2.2k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 592255 | Progress: 59.0% | Rate: 3.2k evt/s | Remain: 2min -------[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + [1;31m ------- Event: 222365 | Progress: 22.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 413768 | Progress: 41.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ******* Event: 285337 | Progress: 28.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 157788 | Progress: 15.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 60987 | Progress: 6.0% | Rate: 2.2k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 593735 | Progress: 59.0% | Rate: 3.2k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 223957 | Progress: 22.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 415469 | Progress: 41.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 286970 | Progress: 28.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 159285 | Progress: 15.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 63702 | Progress: 6.0% | Rate: 2.2k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 595270 | Progress: 59.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 225545 | Progress: 22.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 417255 | Progress: 41.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 288535 | Progress: 28.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 160910 | Progress: 16.0% | Rate: 2.5k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 66562 | Progress: 6.0% | Rate: 2.2k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 596780 | Progress: 59.0% | Rate: 3.1k evt/s | Remain: 2min *******[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + [1;31m ******* Event: 227096 | Progress: 22.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for [1;31m ******* Event: 419687 | Progress: 41.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 290139 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 162543 | Progress: 16.0% | Rate: 2.5k evt/s | Remain: 5min *******[0m the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ------- Event: 68454 | Progress: 6.0% | Rate: 2.2k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 598244 | Progress: 59.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 228771 | Progress: 22.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 422453 | Progress: 42.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 291678 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 164161 | Progress: 16.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 1855 | Progress: 0.0% | Rate: 926.1 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 70071 | Progress: 7.0% | Rate: 2.2k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 599740 | Progress: 59.0% | Rate: 3.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 230307 | Progress: 23.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 425156 | Progress: 42.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 293214 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 165732 | Progress: 16.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 3653 | Progress: 0.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 71769 | Progress: 7.0% | Rate: 2.2k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 601257 | Progress: 60.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 231913 | Progress: 23.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 427867 | Progress: 42.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 294789 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 167261 | Progress: 16.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 5426 | Progress: 0.0% | Rate: 1.4k evt/s | Remain: 12min *******[0m [1;31m ******* Event: 73396 | Progress: 7.0% | Rate: 2.2k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 602695 | Progress: 60.0% | Rate: 3.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 233487 | Progress: 23.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 430283 | Progress: 43.0% | Rate: 2.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 296409 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 168820 | Progress: 16.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 7088 | Progress: 0.0% | Rate: 1.4k evt/s | Remain: 11min -------[0m [1;31m ------- Event: 75021 | Progress: 7.0% | Rate: 2.1k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 604210 | Progress: 60.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 235171 | Progress: 23.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 432354 | Progress: 43.0% | Rate: 2.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 297721 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 8865 | Progress: 0.0% | Rate: 1.5k evt/s | Remain: 11min *******[0m [1;31m ------- Event: 170067 | Progress: 17.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 76653 | Progress: 7.0% | Rate: 2.1k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 606005 | Progress: 60.0% | Rate: 3.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 237203 | Progress: 23.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 433996 | Progress: 43.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 299112 | Progress: 29.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 10590 | Progress: 1.0% | Rate: 1.5k evt/s | Remain: 10min -------[0m [1;31m ******* Event: 171767 | Progress: 17.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 78412 | Progress: 7.0% | Rate: 2.1k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 608177 | Progress: 60.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 238833 | Progress: 23.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 436578 | Progress: 43.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 300637 | Progress: 30.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 12250 | Progress: 1.0% | Rate: 1.5k evt/s | Remain: 10min *******[0m [1;31m ------- Event: 173357 | Progress: 17.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 80062 | Progress: 8.0% | Rate: 2.1k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 609719 | Progress: 60.0% | Rate: 3.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 240461 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 439319 | Progress: 43.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 302177 | Progress: 30.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 13950 | Progress: 1.0% | Rate: 1.5k evt/s | Remain: 10min -------[0m [1;31m ******* Event: 174968 | Progress: 17.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 81709 | Progress: 8.0% | Rate: 2.1k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 611213 | Progress: 61.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 242048 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 441468 | Progress: 44.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 303638 | Progress: 30.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 15591 | Progress: 1.0% | Rate: 1.6k evt/s | Remain: 10min *******[0m [1;31m ------- Event: 176572 | Progress: 17.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 83327 | Progress: 8.0% | Rate: 2.1k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 612791 | Progress: 61.0% | Rate: 3.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 243722 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 444132 | Progress: 44.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 305193 | Progress: 30.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 17283 | Progress: 1.0% | Rate: 1.6k evt/s | Remain: 10min -------[0m [1;31m ******* Event: 178313 | Progress: 17.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 84933 | Progress: 8.0% | Rate: 2.1k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 614352 | Progress: 61.0% | Rate: 3.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 245198 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 445927 | Progress: 44.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 306805 | Progress: 30.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 18995 | Progress: 1.0% | Rate: 1.6k evt/s | Remain: 10min *******[0m [1;31m ------- Event: 181253 | Progress: 18.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 86588 | Progress: 8.0% | Rate: 2.1k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 615802 | Progress: 61.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 246519 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 447520 | Progress: 44.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 308326 | Progress: 30.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 20785 | Progress: 2.0% | Rate: 1.6k evt/s | Remain: 10min -------[0m [1;31m ******* Event: 184020 | Progress: 18.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 88267 | Progress: 8.0% | Rate: 2.1k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 617387 | Progress: 61.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 248085 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 449035 | Progress: 44.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 309837 | Progress: 30.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 22486 | Progress: 2.0% | Rate: 1.6k evt/s | Remain: 10min *******[0m [1;31m ------- Event: 186888 | Progress: 18.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 89990 | Progress: 8.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 618932 | Progress: 61.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 249732 | Progress: 24.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 451109 | Progress: 45.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 311295 | Progress: 31.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 24263 | Progress: 2.0% | Rate: 1.6k evt/s | Remain: 10min -------[0m [1;31m ******* Event: 189118 | Progress: 18.0% | Rate: 2.4k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 91668 | Progress: 9.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 620432 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 251364 | Progress: 25.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 452966 | Progress: 45.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 313335 | Progress: 31.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 26199 | Progress: 2.0% | Rate: 1.6k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 190654 | Progress: 19.0% | Rate: 2.4k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 93339 | Progress: 9.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 621917 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 253047 | Progress: 25.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 454473 | Progress: 45.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 192241 | Progress: 19.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 95011 | Progress: 9.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 314773 | Progress: 31.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 28185 | Progress: 2.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 623417 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 254689 | Progress: 25.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 455912 | Progress: 45.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 96633 | Progress: 9.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 193891 | Progress: 19.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 316286 | Progress: 31.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 29899 | Progress: 2.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 625005 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 256275 | Progress: 25.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 457467 | Progress: 45.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 98253 | Progress: 9.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 317729 | Progress: 31.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 195523 | Progress: 19.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 31835 | Progress: 3.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 626581 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 257946 | Progress: 25.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 458955 | Progress: 45.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 99824 | Progress: 9.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 319352 | Progress: 31.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 197139 | Progress: 19.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 33817 | Progress: 3.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 628126 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 259508 | Progress: 25.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 460455 | Progress: 46.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 101392 | Progress: 10.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 320905 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 198789 | Progress: 19.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 35730 | Progress: 3.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 629728 | Progress: 62.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 261103 | Progress: 26.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 461914 | Progress: 46.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 102949 | Progress: 10.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 200455 | Progress: 20.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 322345 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 37473 | Progress: 3.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 631272 | Progress: 63.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 262711 | Progress: 26.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 463322 | Progress: 46.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 104660 | Progress: 10.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 202211 | Progress: 20.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 323858 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 39189 | Progress: 3.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 632832 | Progress: 63.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 264372 | Progress: 26.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 464817 | Progress: 46.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 106246 | Progress: 10.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 325379 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 203605 | Progress: 20.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 40858 | Progress: 4.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 266091 | Progress: 26.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 634419 | Progress: 63.0% | Rate: 3.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 466445 | Progress: 46.0% | Rate: 2.6k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 107952 | Progress: 10.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 326890 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 205131 | Progress: 20.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 42609 | Progress: 4.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 635862 | Progress: 63.0% | Rate: 3.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 267821 | Progress: 26.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 467874 | Progress: 46.0% | Rate: 2.6k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 109603 | Progress: 10.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 328133 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 206771 | Progress: 20.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 44247 | Progress: 4.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 637298 | Progress: 63.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 269655 | Progress: 26.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 469357 | Progress: 46.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 111273 | Progress: 11.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 208442 | Progress: 20.0% | Rate: 2.3k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 638860 | Progress: 63.0% | Rate: 2.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 329621 | Progress: 32.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 271279 | Progress: 27.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 46033 | Progress: 4.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 470850 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 112956 | Progress: 11.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 210007 | Progress: 21.0% | Rate: 2.3k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 331348 | Progress: 33.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 640344 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 47666 | Progress: 4.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 273017 | Progress: 27.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 472325 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 114814 | Progress: 11.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 211663 | Progress: 21.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 333013 | Progress: 33.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 49361 | Progress: 4.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 274697 | Progress: 27.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 641578 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 473776 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 117091 | Progress: 11.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 213316 | Progress: 21.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 334699 | Progress: 33.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 51119 | Progress: 5.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 276360 | Progress: 27.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 643017 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 475237 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 119478 | Progress: 11.0% | Rate: 2.0k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 214997 | Progress: 21.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 336236 | Progress: 33.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 53041 | Progress: 5.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 277971 | Progress: 27.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 644580 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 476414 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 121102 | Progress: 12.0% | Rate: 2.0k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 216621 | Progress: 21.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 337775 | Progress: 33.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 55005 | Progress: 5.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 279578 | Progress: 27.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 646188 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 477793 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 122783 | Progress: 12.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 218224 | Progress: 21.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 339278 | Progress: 33.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 57012 | Progress: 5.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ------- Event: 281207 | Progress: 28.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 647693 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 479300 | Progress: 47.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 124346 | Progress: 12.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 219844 | Progress: 21.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 340871 | Progress: 34.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 58851 | Progress: 5.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ******* Event: 649243 | Progress: 64.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 282413 | Progress: 28.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 480830 | Progress: 48.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 125911 | Progress: 12.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 342394 | Progress: 34.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 221387 | Progress: 22.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 650780 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 283915 | Progress: 28.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 60736 | Progress: 6.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ******* Event: 127599 | Progress: 12.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 482274 | Progress: 48.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 343957 | Progress: 34.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 223004 | Progress: 22.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 652257 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 285536 | Progress: 28.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 62402 | Progress: 6.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 129269 | Progress: 12.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 483783 | Progress: 48.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 345512 | Progress: 34.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 653758 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 224628 | Progress: 22.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 287101 | Progress: 28.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 64034 | Progress: 6.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ******* Event: 130845 | Progress: 13.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 485336 | Progress: 48.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 347010 | Progress: 34.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 655328 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 226330 | Progress: 22.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 288618 | Progress: 28.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 65544 | Progress: 6.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 132513 | Progress: 13.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 486932 | Progress: 48.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 348480 | Progress: 34.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 656883 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 227831 | Progress: 22.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 290255 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 67135 | Progress: 6.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ******* Event: 134066 | Progress: 13.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 488475 | Progress: 48.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 349890 | Progress: 34.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 658397 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 229385 | Progress: 22.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 291702 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 68820 | Progress: 6.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 135664 | Progress: 13.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 490020 | Progress: 49.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 351364 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 659939 | Progress: 65.0% | Rate: 2.9k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 231027 | Progress: 23.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 293174 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 70455 | Progress: 7.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ******* Event: 137244 | Progress: 13.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 491610 | Progress: 49.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 661369 | Progress: 66.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 352821 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 232558 | Progress: 23.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 294750 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 72082 | Progress: 7.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 138824 | Progress: 13.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 493206 | Progress: 49.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 662903 | Progress: 66.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 354272 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 234097 | Progress: 23.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 296320 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 73775 | Progress: 7.0% | Rate: 1.7k evt/s | Remain: 9min -------[0m [1;31m ******* Event: 140458 | Progress: 14.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 494844 | Progress: 49.0% | Rate: 2.5k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 664499 | Progress: 66.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 355724 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 235603 | Progress: 23.0% | Rate: 2.2k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 297869 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 75386 | Progress: 7.0% | Rate: 1.7k evt/s | Remain: 9min *******[0m [1;31m ------- Event: 141974 | Progress: 14.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 496329 | Progress: 49.0% | Rate: 2.5k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 665736 | Progress: 66.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 357162 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 299400 | Progress: 29.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 237035 | Progress: 23.0% | Rate: 2.2k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 77057 | Progress: 7.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 143547 | Progress: 14.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 497860 | Progress: 49.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 667204 | Progress: 66.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 301010 | Progress: 30.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 238381 | Progress: 23.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 358554 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 78658 | Progress: 7.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 145210 | Progress: 14.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 668732 | Progress: 66.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 499357 | Progress: 49.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 302610 | Progress: 30.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 240004 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 80244 | Progress: 8.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 359984 | Progress: 35.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 146858 | Progress: 14.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 670246 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 500987 | Progress: 50.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 304145 | Progress: 30.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 81836 | Progress: 8.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 241593 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 361066 | Progress: 36.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 148454 | Progress: 14.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 671677 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 502595 | Progress: 50.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 305676 | Progress: 30.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 83462 | Progress: 8.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 362586 | Progress: 36.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 243252 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 150188 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 673248 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 504137 | Progress: 50.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 307237 | Progress: 30.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 85060 | Progress: 8.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 364049 | Progress: 36.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 244908 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 151769 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 674750 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 505720 | Progress: 50.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 308838 | Progress: 30.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 86664 | Progress: 8.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 365590 | Progress: 36.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 246534 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 153358 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 676172 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 507238 | Progress: 50.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 310327 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 88354 | Progress: 8.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 367103 | Progress: 36.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 248173 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 155004 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 677713 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 311888 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 508732 | Progress: 50.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 90063 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 368661 | Progress: 36.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 249808 | Progress: 24.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 156608 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 679161 | Progress: 67.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 313471 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 510234 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 370093 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 91616 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 251391 | Progress: 25.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 158327 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 680606 | Progress: 68.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 314981 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 511723 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 371567 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 93166 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 253038 | Progress: 25.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 159999 | Progress: 15.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 682117 | Progress: 68.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 316572 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 513318 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 373076 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 94818 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 254643 | Progress: 25.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 161666 | Progress: 16.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 683597 | Progress: 68.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 318017 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 514837 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 374556 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 96505 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 256184 | Progress: 25.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 163329 | Progress: 16.0% | Rate: 1.9k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 685034 | Progress: 68.0% | Rate: 2.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 319424 | Progress: 31.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 376019 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 516334 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 98202 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 164950 | Progress: 16.0% | Rate: 1.9k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 257800 | Progress: 25.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 686456 | Progress: 68.0% | Rate: 2.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 320819 | Progress: 32.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 517800 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 377511 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 99884 | Progress: 9.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 166545 | Progress: 16.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 259421 | Progress: 25.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 687980 | Progress: 68.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 322416 | Progress: 32.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 519352 | Progress: 51.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 101494 | Progress: 10.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 379087 | Progress: 37.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 168146 | Progress: 16.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 261052 | Progress: 26.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 689465 | Progress: 68.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 324000 | Progress: 32.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 520850 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 103098 | Progress: 10.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 380631 | Progress: 38.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 169784 | Progress: 16.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 690987 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 262706 | Progress: 26.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 325537 | Progress: 32.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 522294 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 104694 | Progress: 10.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 382118 | Progress: 38.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 171463 | Progress: 17.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 692456 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 264258 | Progress: 26.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 327032 | Progress: 32.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 523765 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 106427 | Progress: 10.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 383593 | Progress: 38.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 173147 | Progress: 17.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 693896 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 265919 | Progress: 26.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 328561 | Progress: 32.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 525296 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 108096 | Progress: 10.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 385106 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 174737 | Progress: 17.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 695393 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 267543 | Progress: 26.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 330101 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 526923 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 109666 | Progress: 10.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 386607 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 176334 | Progress: 17.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 696897 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 269177 | Progress: 26.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 331583 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 111331 | Progress: 11.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 528349 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 177893 | Progress: 17.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 388079 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 698407 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 333161 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 270832 | Progress: 27.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 113041 | Progress: 11.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 529903 | Progress: 52.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 179539 | Progress: 17.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 389547 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 699820 | Progress: 69.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 334700 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 272219 | Progress: 27.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 114759 | Progress: 11.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 531457 | Progress: 53.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 181182 | Progress: 18.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 390952 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 701182 | Progress: 70.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 336240 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 273760 | Progress: 27.0% | Rate: 2.1k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 116499 | Progress: 11.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 533027 | Progress: 53.0% | Rate: 2.4k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 702333 | Progress: 70.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 392503 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 275357 | Progress: 27.0% | Rate: 2.1k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 337851 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 118238 | Progress: 11.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 534543 | Progress: 53.0% | Rate: 2.4k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 703822 | Progress: 70.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 394265 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 276951 | Progress: 27.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 339483 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 120067 | Progress: 12.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 535694 | Progress: 53.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 705384 | Progress: 70.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 182749 | Progress: 18.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 396081 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 278837 | Progress: 27.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 341086 | Progress: 34.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 121713 | Progress: 12.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 537282 | Progress: 53.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 706986 | Progress: 70.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 184391 | Progress: 18.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 397629 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 280434 | Progress: 28.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 342688 | Progress: 34.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 123451 | Progress: 12.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 538788 | Progress: 53.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 708577 | Progress: 70.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 185995 | Progress: 18.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 399243 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 282071 | Progress: 28.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 344196 | Progress: 34.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 540295 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 125116 | Progress: 12.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 710153 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 187628 | Progress: 18.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 400729 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 283634 | Progress: 28.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 345400 | Progress: 34.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 541760 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 126838 | Progress: 12.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 711620 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 189245 | Progress: 18.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 402314 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 285227 | Progress: 28.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 347070 | Progress: 34.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 543198 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 128503 | Progress: 12.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 713167 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 190776 | Progress: 19.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 403881 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 286845 | Progress: 28.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 348747 | Progress: 34.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 544704 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 130211 | Progress: 13.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 714709 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 192341 | Progress: 19.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 405389 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 288435 | Progress: 28.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 350312 | Progress: 35.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 546173 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 131853 | Progress: 13.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 716230 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 193974 | Progress: 19.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 406728 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 290071 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 351995 | Progress: 35.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 547653 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 133642 | Progress: 13.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 717707 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 195649 | Progress: 19.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 291654 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 408357 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 353636 | Progress: 35.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 549170 | Progress: 54.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 719387 | Progress: 71.0% | Rate: 2.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 135227 | Progress: 13.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 197218 | Progress: 19.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 293208 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 409777 | Progress: 40.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 355141 | Progress: 35.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 550657 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 720937 | Progress: 72.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 136802 | Progress: 13.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 198772 | Progress: 19.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 294740 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 356764 | Progress: 35.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 411263 | Progress: 41.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 552117 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 722428 | Progress: 72.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 138418 | Progress: 13.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 200410 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 296323 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 358431 | Progress: 35.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 412759 | Progress: 41.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 553619 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 724001 | Progress: 72.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 140030 | Progress: 14.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 201921 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 297808 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 360009 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 414242 | Progress: 41.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 555106 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 725576 | Progress: 72.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 141609 | Progress: 14.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 299348 | Progress: 29.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 203524 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 361583 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 415734 | Progress: 41.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 556670 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 726991 | Progress: 72.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 143362 | Progress: 14.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 300955 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 205104 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 363198 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 417215 | Progress: 41.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 558250 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 728619 | Progress: 72.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 145106 | Progress: 14.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 302477 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 206763 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 364815 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 559740 | Progress: 55.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 418615 | Progress: 41.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 730131 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 146740 | Progress: 14.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 304071 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 208325 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 366370 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 561192 | Progress: 56.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 420069 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 731729 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 148410 | Progress: 14.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 305508 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 209951 | Progress: 20.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 367985 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 562775 | Progress: 56.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 421601 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 733274 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 306957 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 150162 | Progress: 15.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 211588 | Progress: 21.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 369511 | Progress: 36.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 564246 | Progress: 56.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 423090 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 734835 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 308412 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 151818 | Progress: 15.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 213259 | Progress: 21.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 371107 | Progress: 37.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 565807 | Progress: 56.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 424591 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 736303 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 309960 | Progress: 30.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 153529 | Progress: 15.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 214873 | Progress: 21.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 372677 | Progress: 37.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 567319 | Progress: 56.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 426064 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 737441 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 311501 | Progress: 31.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 155308 | Progress: 15.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 216611 | Progress: 21.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 374287 | Progress: 37.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 568759 | Progress: 56.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 427244 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 738961 | Progress: 73.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 313066 | Progress: 31.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 156923 | Progress: 15.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 218240 | Progress: 21.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 375902 | Progress: 37.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 570209 | Progress: 57.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 740516 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 428669 | Progress: 42.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 314640 | Progress: 31.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 158616 | Progress: 15.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 377461 | Progress: 37.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 219952 | Progress: 21.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 571171 | Progress: 57.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 742096 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 430160 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 316197 | Progress: 31.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 221097 | Progress: 22.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 572636 | Progress: 57.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 160258 | Progress: 16.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 378924 | Progress: 37.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 743618 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 431635 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 317869 | Progress: 31.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 222852 | Progress: 22.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 161908 | Progress: 16.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 574100 | Progress: 57.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 380448 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 745138 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 433167 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 319443 | Progress: 31.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 163523 | Progress: 16.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 575582 | Progress: 57.0% | Rate: 2.3k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 381602 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 224407 | Progress: 22.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 746660 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 434699 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 321013 | Progress: 32.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 165166 | Progress: 16.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 576963 | Progress: 57.0% | Rate: 2.3k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 225973 | Progress: 22.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 382991 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 748111 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 436304 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 166849 | Progress: 16.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 322622 | Progress: 32.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 578388 | Progress: 57.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 227652 | Progress: 22.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 749592 | Progress: 74.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 437820 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 384522 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 168498 | Progress: 16.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ------- Event: 324146 | Progress: 32.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 579915 | Progress: 57.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 229267 | Progress: 22.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 751081 | Progress: 75.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 439292 | Progress: 43.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 386082 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 170058 | Progress: 17.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 325627 | Progress: 32.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 581339 | Progress: 58.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 752582 | Progress: 75.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 230810 | Progress: 23.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 440914 | Progress: 44.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 387617 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 327216 | Progress: 32.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 582848 | Progress: 58.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 171635 | Progress: 17.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 754052 | Progress: 75.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 232443 | Progress: 23.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 442459 | Progress: 44.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 389103 | Progress: 38.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 584380 | Progress: 58.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 173255 | Progress: 17.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 328690 | Progress: 32.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 755560 | Progress: 75.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 234125 | Progress: 23.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 443873 | Progress: 44.0% | Rate: 2.0k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 390752 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 585766 | Progress: 58.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 174914 | Progress: 17.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 757034 | Progress: 75.0% | Rate: 2.6k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 235735 | Progress: 23.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 330217 | Progress: 33.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 445373 | Progress: 44.0% | Rate: 2.0k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 392372 | Progress: 39.0% | Rate: 2.0k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 587286 | Progress: 58.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 176737 | Progress: 17.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 758492 | Progress: 75.0% | Rate: 2.6k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 237334 | Progress: 23.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 446748 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 331798 | Progress: 33.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 393875 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 588827 | Progress: 58.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 178450 | Progress: 17.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 760041 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 239006 | Progress: 23.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 448230 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 333277 | Progress: 33.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 395354 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 590330 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 180188 | Progress: 18.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 761525 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 449775 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 240697 | Progress: 24.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 334817 | Progress: 33.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 396934 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 181819 | Progress: 18.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 591820 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 763120 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 451275 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 242303 | Progress: 24.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 398480 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 336360 | Progress: 33.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 183507 | Progress: 18.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 764664 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 452629 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 243902 | Progress: 24.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 400081 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 337867 | Progress: 33.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 593228 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 185264 | Progress: 18.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 766167 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 454084 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 245473 | Progress: 24.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 401756 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 338892 | Progress: 33.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 594703 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 187038 | Progress: 18.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ------- Event: 767649 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 455650 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 247083 | Progress: 24.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 403420 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 340501 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 596238 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 188739 | Progress: 18.0% | Rate: 1.7k evt/s | Remain: 8min *******[0m [1;31m ******* Event: 769055 | Progress: 76.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 248679 | Progress: 24.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 404982 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 457113 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 342041 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 597833 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 770536 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 190373 | Progress: 19.0% | Rate: 1.7k evt/s | Remain: 8min -------[0m [1;31m ******* Event: 250294 | Progress: 25.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 406622 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 458609 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 343564 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 599436 | Progress: 59.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 771922 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 192183 | Progress: 19.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 408087 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 251863 | Progress: 25.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 460101 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 345136 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 601045 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 773027 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 409556 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 253504 | Progress: 25.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 461482 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 346626 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 602561 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 774458 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 193405 | Progress: 19.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 411120 | Progress: 41.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 255067 | Progress: 25.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 462835 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 348137 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 604142 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 775957 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 256694 | Progress: 25.0% | Rate: 1.8k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 412630 | Progress: 41.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 195073 | Progress: 19.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 464361 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 349636 | Progress: 34.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 605609 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 777397 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 258050 | Progress: 25.0% | Rate: 1.8k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 414235 | Progress: 41.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 196701 | Progress: 19.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 465858 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 351217 | Progress: 35.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 606813 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 778911 | Progress: 77.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 259331 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 198379 | Progress: 19.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 415933 | Progress: 41.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 467352 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 352758 | Progress: 35.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 608179 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 780315 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 260939 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 200048 | Progress: 20.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 417447 | Progress: 41.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 468853 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 354297 | Progress: 35.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 609689 | Progress: 60.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 781727 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 262594 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 201736 | Progress: 20.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 470422 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 418729 | Progress: 41.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 355821 | Progress: 35.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 611176 | Progress: 61.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 783181 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 264237 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 203433 | Progress: 20.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 471888 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 357307 | Progress: 35.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 420238 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 612659 | Progress: 61.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 784680 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 205241 | Progress: 20.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 473389 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 265878 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 358831 | Progress: 35.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 421789 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 614194 | Progress: 61.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 786102 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 474943 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 206916 | Progress: 20.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 267502 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 360459 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 615692 | Progress: 61.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 423261 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 787547 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 476545 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 269085 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 361944 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 208546 | Progress: 20.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 424867 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 617139 | Progress: 61.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 789086 | Progress: 78.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 478027 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 270687 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 363463 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 210241 | Progress: 21.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 426414 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 618533 | Progress: 61.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 790592 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 479489 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 272311 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 364888 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 211946 | Progress: 21.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 428021 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 620059 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 792114 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 480890 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 366433 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 273851 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 213608 | Progress: 21.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 621534 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 429569 | Progress: 42.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 482336 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 793515 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 367922 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 275460 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 215388 | Progress: 21.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 622976 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 431043 | Progress: 43.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 483819 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 794918 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 369438 | Progress: 36.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 277050 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 217106 | Progress: 21.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 624469 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 432573 | Progress: 43.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 485361 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 796365 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 371029 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 278693 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 218864 | Progress: 21.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 434147 | Progress: 43.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 486822 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 625913 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 797835 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 280319 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 372531 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 220623 | Progress: 22.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 435748 | Progress: 43.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 488303 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 627389 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 799284 | Progress: 79.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 281890 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 222377 | Progress: 22.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 373624 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 489870 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 628862 | Progress: 62.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 437320 | Progress: 43.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 800750 | Progress: 80.0% | Rate: 2.5k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 283523 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 223992 | Progress: 22.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 375135 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 438865 | Progress: 43.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 630310 | Progress: 63.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 490927 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 802257 | Progress: 80.0% | Rate: 2.5k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 285210 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 225645 | Progress: 22.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 376732 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 631814 | Progress: 63.0% | Rate: 2.2k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 803634 | Progress: 80.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 492407 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 440385 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 286863 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 227405 | Progress: 22.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 378291 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 633278 | Progress: 63.0% | Rate: 2.2k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 441973 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 805047 | Progress: 80.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 288356 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 229184 | Progress: 22.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 493881 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 379924 | Progress: 37.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 806534 | Progress: 80.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 634748 | Progress: 63.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 230908 | Progress: 23.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 443529 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 289980 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 495341 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 381605 | Progress: 38.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 807913 | Progress: 80.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 636263 | Progress: 63.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 232360 | Progress: 23.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 291610 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 445151 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 496911 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 383259 | Progress: 38.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 637714 | Progress: 63.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 809244 | Progress: 80.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 446750 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 233684 | Progress: 23.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 498406 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 293131 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 384806 | Progress: 38.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 639212 | Progress: 63.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 810589 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 448303 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 499868 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 235421 | Progress: 23.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 294725 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 386334 | Progress: 38.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 640748 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 812102 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 449783 | Progress: 44.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 501413 | Progress: 50.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 237107 | Progress: 23.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 296168 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 387956 | Progress: 38.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 641943 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 813627 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 502986 | Progress: 50.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 238653 | Progress: 23.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 297545 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 451378 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 389517 | Progress: 38.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 643262 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 815135 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 504420 | Progress: 50.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 299198 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 452907 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 240396 | Progress: 24.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 391151 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 644733 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 816666 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 505934 | Progress: 50.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 300836 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 454295 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 241993 | Progress: 24.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 392610 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 646283 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 818201 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 507407 | Progress: 50.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 302399 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 455566 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 243679 | Progress: 24.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 394200 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 647758 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 819746 | Progress: 81.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 509000 | Progress: 50.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 304024 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 457150 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 245301 | Progress: 24.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 395760 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 649230 | Progress: 64.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 821279 | Progress: 82.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 510524 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 305643 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 458673 | Progress: 45.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 246940 | Progress: 24.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 397368 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 650646 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 822820 | Progress: 82.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 511933 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 307196 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 460192 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 248484 | Progress: 24.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 398993 | Progress: 39.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 652131 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 513492 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 308771 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 461773 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 824334 | Progress: 82.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 250125 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 400578 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 653636 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 310422 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 514970 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 463249 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 825805 | Progress: 82.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 402153 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 251780 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 655137 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 312063 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 516368 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 464788 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 253406 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 827405 | Progress: 82.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 656599 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 403696 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 517810 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 313680 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 466241 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 828878 | Progress: 82.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 255157 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 658079 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 405249 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 519365 | Progress: 51.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 315280 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 467819 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 830348 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 256847 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 659548 | Progress: 65.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 406712 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 520961 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 316819 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 469292 | Progress: 46.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 831897 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 661000 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 258468 | Progress: 25.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 408005 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 522436 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 318516 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 471040 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 833140 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 662515 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 260236 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 409604 | Progress: 40.0% | Rate: 1.9k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 523969 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 320223 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 472695 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 834720 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 663944 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 262035 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 525205 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 411140 | Progress: 41.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 321858 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 474328 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 836113 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 665466 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 263839 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 526662 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 323471 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 412570 | Progress: 41.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 475836 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 837494 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 265537 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 666615 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 528153 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 325127 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 414142 | Progress: 41.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 477412 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 838975 | Progress: 83.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 668081 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 529667 | Progress: 52.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 267217 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 326693 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 415658 | Progress: 41.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 479021 | Progress: 47.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 840404 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 669582 | Progress: 66.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 531213 | Progress: 53.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 328329 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 268931 | Progress: 26.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 417196 | Progress: 41.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 480568 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 841954 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 671063 | Progress: 67.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 330004 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 270445 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 532665 | Progress: 53.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 418732 | Progress: 41.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 482123 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 843369 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 331704 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 672607 | Progress: 67.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 272169 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 534093 | Progress: 53.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 420300 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 483561 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 844837 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 333145 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 674047 | Progress: 67.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 273651 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 535598 | Progress: 53.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 485050 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 421695 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 846266 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 334854 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 675541 | Progress: 67.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 275472 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ******* Event: 537086 | Progress: 53.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 486562 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 423279 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 847776 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 336103 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 676952 | Progress: 67.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 277202 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 538507 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 488122 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 337634 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 678491 | Progress: 67.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 849279 | Progress: 84.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 278946 | Progress: 27.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 424887 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 540006 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 489668 | Progress: 48.0% | Rate: 1.9k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 339299 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 680042 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 850758 | Progress: 85.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 280617 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 426530 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 541498 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 491014 | Progress: 49.0% | Rate: 1.9k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 340951 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 681469 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 852219 | Progress: 85.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 282399 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 428158 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 543050 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 492460 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 342533 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 682942 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 853681 | Progress: 85.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 284147 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ------- Event: 544494 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 429834 | Progress: 42.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 494088 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 344153 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 684410 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 285882 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 855212 | Progress: 85.0% | Rate: 2.4k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 546044 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 431521 | Progress: 43.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 495693 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 345706 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 685922 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 287642 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 856768 | Progress: 85.0% | Rate: 2.4k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 547541 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 433122 | Progress: 43.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 497360 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 347246 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 687360 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 289309 | Progress: 28.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 858227 | Progress: 85.0% | Rate: 2.3k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 549043 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 434760 | Progress: 43.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 498938 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 348833 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 688846 | Progress: 68.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 290933 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 7min -------[0m [1;31m ******* Event: 859689 | Progress: 85.0% | Rate: 2.3k evt/s | Remain: 59s *******[0m [1;31m ------- Event: 550579 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 436373 | Progress: 43.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 500517 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 350501 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 690318 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 292639 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 7min *******[0m [1;31m ------- Event: 861225 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 59s -------[0m [1;31m ******* Event: 552079 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 437916 | Progress: 43.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 502077 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 352099 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 691810 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 294326 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 553543 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 862729 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 58s *******[0m [1;31m ******* Event: 439449 | Progress: 43.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 503685 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 353779 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 693229 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 296033 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 554927 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 864239 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 58s -------[0m [1;31m ------- Event: 440846 | Progress: 44.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 505228 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 355457 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 694686 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 297741 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 556393 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 442164 | Progress: 44.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 865736 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 57s *******[0m [1;31m ------- Event: 506830 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 357065 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 696163 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 299364 | Progress: 29.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 557644 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 443799 | Progress: 44.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 867283 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 56s -------[0m [1;31m ******* Event: 508370 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 358568 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 697578 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 301124 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 559011 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 868349 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 56s *******[0m [1;31m ******* Event: 445436 | Progress: 44.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 509902 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 360257 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 699083 | Progress: 69.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 302799 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 560406 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 447025 | Progress: 44.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 869845 | Progress: 86.0% | Rate: 2.3k evt/s | Remain: 55s -------[0m [1;31m ******* Event: 511520 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 361921 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 700602 | Progress: 70.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 304528 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 561984 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 448626 | Progress: 44.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 871354 | Progress: 87.0% | Rate: 2.3k evt/s | Remain: 55s *******[0m [1;31m ------- Event: 513101 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 363529 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 701681 | Progress: 70.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 563498 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 306206 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 872808 | Progress: 87.0% | Rate: 2.3k evt/s | Remain: 54s -------[0m [1;31m ------- Event: 450166 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 365137 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 514648 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 703246 | Progress: 70.0% | Rate: 2.1k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 564976 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 307905 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 874270 | Progress: 87.0% | Rate: 2.3k evt/s | Remain: 54s *******[0m [1;31m ******* Event: 451894 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 516230 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 366361 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 704768 | Progress: 70.0% | Rate: 2.1k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 566462 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 309492 | Progress: 30.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 453475 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 875820 | Progress: 87.0% | Rate: 2.3k evt/s | Remain: 53s -------[0m [1;31m ******* Event: 517399 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 367948 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 706129 | Progress: 70.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 567899 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 311290 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 455022 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 877292 | Progress: 87.0% | Rate: 2.3k evt/s | Remain: 52s *******[0m [1;31m ------- Event: 518888 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 369547 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 707557 | Progress: 70.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 569452 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 312739 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 456538 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 878885 | Progress: 87.0% | Rate: 2.3k evt/s | Remain: 52s -------[0m [1;31m ******* Event: 520472 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 371221 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 709050 | Progress: 70.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 570915 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 314493 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 458126 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 880395 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 51s *******[0m [1;31m ------- Event: 522058 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 372870 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 710537 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 572385 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 316252 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 459670 | Progress: 45.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 881950 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 51s -------[0m [1;31m ******* Event: 523645 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 374522 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 712018 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 573879 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 317905 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 461313 | Progress: 46.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 883401 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 50s *******[0m [1;31m ------- Event: 525242 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 376146 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 713529 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 575302 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 319668 | Progress: 31.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 462885 | Progress: 46.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 884927 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 49s -------[0m [1;31m ******* Event: 526888 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 377818 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 714980 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 576777 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 321434 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 464488 | Progress: 46.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 886447 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 49s *******[0m [1;31m ------- Event: 528519 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 379463 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 716431 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 578334 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 323134 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 466147 | Progress: 46.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 887950 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 48s -------[0m [1;31m ******* Event: 530098 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 381089 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 717838 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 579809 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 324863 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 467686 | Progress: 46.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 889518 | Progress: 88.0% | Rate: 2.3k evt/s | Remain: 48s *******[0m [1;31m ------- Event: 531749 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 382753 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 719322 | Progress: 71.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 581225 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 326558 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 469191 | Progress: 46.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 891039 | Progress: 89.0% | Rate: 2.3k evt/s | Remain: 47s -------[0m [1;31m ******* Event: 384409 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 533357 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 720818 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 582657 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 328278 | Progress: 32.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 470720 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 892559 | Progress: 89.0% | Rate: 2.3k evt/s | Remain: 46s *******[0m [1;31m ------- Event: 385933 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 534936 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 722274 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 584109 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 330027 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 472231 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 894026 | Progress: 89.0% | Rate: 2.3k evt/s | Remain: 46s -------[0m [1;31m ******* Event: 387539 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 536496 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 723776 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 585590 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 331727 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 473819 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 895474 | Progress: 89.0% | Rate: 2.3k evt/s | Remain: 45s *******[0m [1;31m ------- Event: 389180 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 538060 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 725256 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 587154 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 475219 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 333558 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 896982 | Progress: 89.0% | Rate: 2.3k evt/s | Remain: 44s -------[0m [1;31m ******* Event: 390790 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 726700 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 539642 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 588629 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 476490 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 335214 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 898520 | Progress: 89.0% | Rate: 2.3k evt/s | Remain: 44s *******[0m [1;31m ------- Event: 392476 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 728249 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 541332 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 590135 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 477954 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 336839 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 900161 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 43s -------[0m [1;31m ******* Event: 394067 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 729711 | Progress: 72.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 542991 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 591325 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 479540 | Progress: 47.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 338592 | Progress: 33.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 901745 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 42s *******[0m [1;31m ------- Event: 395592 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 731148 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 544541 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 592689 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 481106 | Progress: 48.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 340280 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 397201 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 732623 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 546033 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 903160 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 42s -------[0m [1;31m ------- Event: 594071 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 482710 | Progress: 48.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 341909 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 398847 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 734125 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 547608 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 904314 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 41s *******[0m [1;31m ******* Event: 595509 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 484331 | Progress: 48.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 343581 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 400478 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 735685 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 549266 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 905789 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 41s -------[0m [1;31m ------- Event: 597025 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 485926 | Progress: 48.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 345278 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 402072 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 737008 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 550864 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 907352 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 40s *******[0m [1;31m ******* Event: 598520 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 487489 | Progress: 48.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 347097 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 403445 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 738180 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 552454 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 908873 | Progress: 90.0% | Rate: 2.3k evt/s | Remain: 40s -------[0m [1;31m ------- Event: 599980 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 489142 | Progress: 48.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 348696 | Progress: 34.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 404702 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 739660 | Progress: 73.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 553826 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 910252 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 39s *******[0m [1;31m ******* Event: 601541 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 490782 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 350507 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 406423 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 741170 | Progress: 74.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 555075 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 911711 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 38s -------[0m [1;31m ------- Event: 602981 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 492282 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 407997 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 351887 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 742726 | Progress: 74.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 556577 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 913199 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 38s *******[0m [1;31m ******* Event: 604462 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 493869 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 409560 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 744206 | Progress: 74.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 353642 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 558144 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 914713 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 37s -------[0m [1;31m ------- Event: 605932 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 495455 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 411071 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 745658 | Progress: 74.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 355434 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 559749 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 916264 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 36s *******[0m [1;31m ******* Event: 607411 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 497025 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 412662 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 747141 | Progress: 74.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 357079 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 561267 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 917750 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 36s -------[0m [1;31m ------- Event: 608859 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 498715 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 414241 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 748593 | Progress: 74.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 358781 | Progress: 35.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 562927 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 919249 | Progress: 91.0% | Rate: 2.3k evt/s | Remain: 35s *******[0m [1;31m ******* Event: 610330 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 500314 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 415911 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 750134 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 360456 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 564540 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 920707 | Progress: 92.0% | Rate: 2.3k evt/s | Remain: 35s -------[0m [1;31m ******* Event: 501851 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 611829 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 417527 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 751610 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 362153 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 566136 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 922195 | Progress: 92.0% | Rate: 2.3k evt/s | Remain: 34s *******[0m [1;31m ------- Event: 503498 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 613316 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 419049 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 567798 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 753122 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 363707 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 923645 | Progress: 92.0% | Rate: 2.3k evt/s | Remain: 33s -------[0m [1;31m ******* Event: 505022 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 614713 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 420750 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 569362 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 754703 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 365443 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 925174 | Progress: 92.0% | Rate: 2.3k evt/s | Remain: 33s *******[0m [1;31m ------- Event: 506562 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 616262 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 422392 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 570933 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 756242 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 367114 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 926689 | Progress: 92.0% | Rate: 2.3k evt/s | Remain: 32s -------[0m [1;31m ******* Event: 508033 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 617787 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 424047 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 572569 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 757776 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 368832 | Progress: 36.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 928140 | Progress: 92.0% | Rate: 2.2k evt/s | Remain: 31s *******[0m [1;31m ------- Event: 509288 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 619251 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 425692 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 574086 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 759227 | Progress: 75.0% | Rate: 2.0k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 370531 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 929603 | Progress: 92.0% | Rate: 2.2k evt/s | Remain: 31s -------[0m [1;31m ******* Event: 510846 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 620799 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 427239 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 575658 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 760677 | Progress: 76.0% | Rate: 2.0k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 372244 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 931124 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 30s *******[0m [1;31m ------- Event: 512417 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 622231 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 428860 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 577180 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 762253 | Progress: 76.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 373873 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 932664 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 30s -------[0m [1;31m ------- Event: 623661 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 514012 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 430458 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 578684 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 763799 | Progress: 76.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 375546 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 934156 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 29s *******[0m [1;31m ------- Event: 515541 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 624903 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 432039 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 580247 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 765354 | Progress: 76.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 377333 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 935635 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 28s -------[0m [1;31m ******* Event: 517061 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 626290 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 433634 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 581824 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 766851 | Progress: 76.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 379052 | Progress: 37.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 937067 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 28s *******[0m [1;31m ------- Event: 518578 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 627745 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 435213 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 583336 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 768441 | Progress: 76.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 380873 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 938525 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 27s -------[0m [1;31m ******* Event: 520128 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 629248 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 436843 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 770040 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 584765 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 382639 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 939660 | Progress: 93.0% | Rate: 2.2k evt/s | Remain: 27s *******[0m [1;31m ------- Event: 521701 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 630652 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 438543 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 771518 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 586319 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 384336 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 941064 | Progress: 94.0% | Rate: 2.2k evt/s | Remain: 26s -------[0m [1;31m ******* Event: 523267 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 632198 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 440115 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 772636 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 587904 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 385909 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 942570 | Progress: 94.0% | Rate: 2.2k evt/s | Remain: 25s *******[0m [1;31m ------- Event: 524848 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 633667 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 773938 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 441509 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 589472 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 387320 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ------- Event: 944068 | Progress: 94.0% | Rate: 2.2k evt/s | Remain: 25s -------[0m [1;31m ******* Event: 526413 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 635105 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 775533 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 443056 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 590649 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 389106 | Progress: 38.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ******* Event: 945497 | Progress: 94.0% | Rate: 2.2k evt/s | Remain: 24s *******[0m [1;31m ------- Event: 528024 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 636570 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 776980 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 444739 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 390884 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 6min *******[0m [1;31m ******* Event: 592108 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 947059 | Progress: 94.0% | Rate: 2.2k evt/s | Remain: 23s -------[0m [1;31m ******* Event: 529605 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 638061 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 778446 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 446364 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 392572 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 6min -------[0m [1;31m ------- Event: 593664 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 948645 | Progress: 94.0% | Rate: 2.2k evt/s | Remain: 23s *******[0m [1;31m ------- Event: 531229 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 639516 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 779943 | Progress: 77.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 448006 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 394289 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 595182 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 950197 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 22s -------[0m [1;31m ******* Event: 532938 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 641028 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 781415 | Progress: 78.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 449589 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 396037 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 596772 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 951728 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 21s *******[0m [1;31m ------- Event: 534516 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 642576 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 782817 | Progress: 78.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 451149 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 598306 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 397679 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 953243 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 21s -------[0m [1;31m ------- Event: 644077 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 536084 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 784316 | Progress: 78.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 452643 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 599859 | Progress: 59.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 399435 | Progress: 39.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 954696 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 20s *******[0m [1;31m ******* Event: 645500 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 537615 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 785744 | Progress: 78.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 454294 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 601373 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 401205 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 956195 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 19s -------[0m [1;31m ------- Event: 646946 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 539233 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 787251 | Progress: 78.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 455781 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 602992 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 402904 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 957707 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 19s *******[0m [1;31m ******* Event: 648380 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 540854 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 788639 | Progress: 78.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 457298 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 604600 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 404669 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 959205 | Progress: 95.0% | Rate: 2.2k evt/s | Remain: 18s -------[0m [1;31m ------- Event: 649818 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 542258 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 790126 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 458979 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 606225 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 406442 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 960756 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 17s *******[0m [1;31m ******* Event: 651325 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 543568 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 791573 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 460554 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 607763 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 408198 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 962247 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 17s -------[0m [1;31m ------- Event: 652732 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 545103 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 793069 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 609451 | Progress: 60.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 462114 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 409916 | Progress: 40.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 963778 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 16s *******[0m [1;31m ******* Event: 654181 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 546700 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 794590 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 463685 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 611041 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 411567 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 965283 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 15s -------[0m [1;31m ------- Event: 655299 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 548165 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 796102 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 612696 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 465229 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 413273 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 966857 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 15s *******[0m [1;31m ******* Event: 656757 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 549712 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 797576 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 614267 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 466777 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 415030 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 968356 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 14s -------[0m [1;31m ------- Event: 658194 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 551204 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 799089 | Progress: 79.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 615893 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 468351 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 416794 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 969841 | Progress: 96.0% | Rate: 2.2k evt/s | Remain: 13s *******[0m [1;31m ******* Event: 659742 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 552684 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 800488 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 617472 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 469904 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 418612 | Progress: 41.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 971402 | Progress: 97.0% | Rate: 2.2k evt/s | Remain: 12s -------[0m [1;31m ******* Event: 554248 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 661250 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 801891 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 619115 | Progress: 61.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 471387 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 420236 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 972875 | Progress: 97.0% | Rate: 2.2k evt/s | Remain: 12s *******[0m [1;31m ------- Event: 555772 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 803336 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 662690 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 620686 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 472957 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 422011 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 974314 | Progress: 97.0% | Rate: 2.2k evt/s | Remain: 11s -------[0m [1;31m ******* Event: 557384 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 804829 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 664181 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 622277 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 474544 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 423714 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 975617 | Progress: 97.0% | Rate: 2.2k evt/s | Remain: 11s *******[0m [1;31m ------- Event: 559007 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 806358 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 665691 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 623755 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 476163 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 425198 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 977067 | Progress: 97.0% | Rate: 2.2k evt/s | Remain: 10s -------[0m [1;31m ******* Event: 560549 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 807817 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 667227 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 625344 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 426655 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 477613 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 978606 | Progress: 97.0% | Rate: 2.2k evt/s | Remain: 9s *******[0m [1;31m ------- Event: 562068 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 808916 | Progress: 80.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 668765 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 626790 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 428371 | Progress: 42.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 479235 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 980136 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 9s -------[0m [1;31m ******* Event: 563608 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 810315 | Progress: 81.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 628063 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 670289 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 430042 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 480509 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 981638 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 8s *******[0m [1;31m ------- Event: 565229 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 811745 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 629627 | Progress: 62.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 671770 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 431711 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 482110 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 983127 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 7s -------[0m [1;31m ******* Event: 566832 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 813313 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 631175 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 673218 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 433401 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 483716 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 984708 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 6s *******[0m [1;31m ------- Event: 568442 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 814822 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 632764 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 674726 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 435173 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 485360 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 986198 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 6s -------[0m [1;31m ******* Event: 570088 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 816392 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 634410 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 676148 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 487002 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 436902 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 987660 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 5s *******[0m [1;31m ------- Event: 571671 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 817826 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 636010 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 677548 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 438630 | Progress: 43.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 488677 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 989190 | Progress: 98.0% | Rate: 2.2k evt/s | Remain: 4s -------[0m [1;31m ******* Event: 573228 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 819190 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 637656 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 678978 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 440390 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 490222 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 990729 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 4s *******[0m [1;31m ------- Event: 574855 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 820652 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 639328 | Progress: 63.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 680455 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 442211 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 491759 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 992238 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 3s -------[0m [1;31m ******* Event: 576345 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 822138 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 640979 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 681814 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 443887 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 993721 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 2s *******[0m [1;31m ------- Event: 493404 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 577691 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 823628 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 642569 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 683270 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 445561 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ------- Event: 995228 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 2s -------[0m [1;31m ******* Event: 494980 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 579335 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 825120 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 644100 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 684738 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 447233 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 996713 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 1s *******[0m [1;31m ------- Event: 496509 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 580844 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 826595 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 645635 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 448851 | Progress: 44.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 686161 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 998181 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 0s -------[0m [1;31m ******* Event: 498038 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 582496 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 828014 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 647188 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 450556 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ******* Event: 999312 | Progress: 99.0% | Rate: 2.2k evt/s | Remain: 0s *******[0m [1;31m ------- Event: 687486 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 499623 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;32m ------- Event: 1000000 | Progress: 100.0% | Rate: 2.2k evt/s | Remain: 0s -------[0m + [1;31m ------- Event: 584059 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 829530 | Progress: 82.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 648720 | Progress: 64.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + -> Number of bites written to file: 31720 + [1;31m ******* Event: 452452 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 688644 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 501181 | Progress: 50.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 585729 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 831078 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 650293 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 454826 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 690104 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 502815 | Progress: 50.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 587296 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 832261 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 651869 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 457681 | Progress: 45.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 691544 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 504387 | Progress: 50.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 588894 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 833697 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 653441 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 460780 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 693043 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 506039 | Progress: 50.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 590488 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 835218 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 655103 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 463607 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 694508 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 507697 | Progress: 50.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 592073 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 836745 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 656739 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 466275 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 695997 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 509439 | Progress: 50.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 593751 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 838191 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 658347 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 469407 | Progress: 46.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 697485 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 511049 | Progress: 51.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 595393 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 839680 | Progress: 83.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 659906 | Progress: 65.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 472428 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 698979 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 512631 | Progress: 51.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 597037 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 841103 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 661406 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 475285 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 700549 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 514235 | Progress: 51.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 598692 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 842560 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 662784 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 478311 | Progress: 47.0% | Rate: 1.7k evt/s | Remain: 5min -------[0m [1;31m ------- Event: 702087 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 515648 | Progress: 51.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 600373 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 844130 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 664197 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 481248 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 5min *******[0m [1;31m ******* Event: 703598 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 517252 | Progress: 51.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 601965 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 845559 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 665632 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 484283 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 705125 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 518539 | Progress: 51.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 603533 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 847024 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 667270 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 487248 | Progress: 48.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 706574 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 520123 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 605110 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 848447 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 668866 | Progress: 66.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 490216 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 708053 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 521695 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 606574 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 849923 | Progress: 84.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 670381 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 493463 | Progress: 49.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 709546 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 523349 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 608075 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 851459 | Progress: 85.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 671943 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 496593 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 711040 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 525026 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 609669 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 852952 | Progress: 85.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 673454 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 499619 | Progress: 49.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 712488 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 526590 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 610976 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 854395 | Progress: 85.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 674956 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 502471 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 714012 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 528180 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 612237 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 855870 | Progress: 85.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 676532 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 505273 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 715518 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 529776 | Progress: 52.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 613829 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 857419 | Progress: 85.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 678115 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 508320 | Progress: 50.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 717054 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 531412 | Progress: 53.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 615347 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 679774 | Progress: 67.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 858868 | Progress: 85.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 511463 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 718525 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 533037 | Progress: 53.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 616962 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 681393 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 860402 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 514584 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 719939 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 534605 | Progress: 53.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 618490 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 682965 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 861902 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 517608 | Progress: 51.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 721060 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 536262 | Progress: 53.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 620024 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 684558 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 863363 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 520715 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 722404 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 537942 | Progress: 53.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 621548 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 686070 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 864817 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 523688 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 723893 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 539446 | Progress: 53.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 623072 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 687698 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 866346 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 526762 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 725502 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 541096 | Progress: 54.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 625601 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 689283 | Progress: 68.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 867829 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 528437 | Progress: 52.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 726988 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 542662 | Progress: 54.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 628109 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 868826 | Progress: 86.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 690401 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 530088 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 729325 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 544268 | Progress: 54.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 629697 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 870230 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 691846 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 532358 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 731330 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 545854 | Progress: 54.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 631205 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 871715 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 693367 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 535366 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 732812 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 547555 | Progress: 54.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 632718 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 873244 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 694904 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 538487 | Progress: 53.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 734316 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 548732 | Progress: 54.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 634273 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 874752 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 696373 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 541434 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 735768 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 550239 | Progress: 55.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 635805 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 876194 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 697929 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 544582 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 737230 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 551791 | Progress: 55.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 637331 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 877632 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 699465 | Progress: 69.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 547141 | Progress: 54.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 738763 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 553433 | Progress: 55.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 638982 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 879084 | Progress: 87.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 700994 | Progress: 70.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 550394 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 740219 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 555128 | Progress: 55.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 640596 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 880503 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 702497 | Progress: 70.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 553459 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 741808 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 556689 | Progress: 55.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 642174 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 882016 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 703982 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 555487 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 743967 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 558815 | Progress: 55.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 643509 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 883511 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 705467 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 557227 | Progress: 55.0% | Rate: 1.8k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 745476 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 561376 | Progress: 56.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 644975 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 884965 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 706914 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 560206 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 746895 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 562964 | Progress: 56.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 646442 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 886484 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 59s -------[0m [1;31m ------- Event: 708520 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 563369 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 748454 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 564576 | Progress: 56.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 647933 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 888018 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 59s *******[0m [1;31m ******* Event: 710031 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 566443 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 750002 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 566139 | Progress: 56.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 649491 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 889532 | Progress: 88.0% | Rate: 1.9k evt/s | Remain: 58s -------[0m [1;31m ------- Event: 711508 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 568664 | Progress: 56.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 751459 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 567657 | Progress: 56.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 650975 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 890951 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 57s *******[0m [1;31m ******* Event: 713045 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 570359 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 752871 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 569287 | Progress: 56.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 652552 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 892408 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 56s -------[0m [1;31m ------- Event: 714521 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 572058 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 754167 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 570807 | Progress: 57.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 654105 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 893920 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 56s *******[0m [1;31m ******* Event: 716069 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 574305 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 755429 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 572519 | Progress: 57.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 655668 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 895369 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 55s -------[0m [1;31m ------- Event: 717547 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 576746 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 756857 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 574071 | Progress: 57.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 657188 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 896854 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 54s *******[0m [1;31m ******* Event: 719026 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 578748 | Progress: 57.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 758337 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 575606 | Progress: 57.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 658656 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 898330 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 53s -------[0m [1;31m ------- Event: 720580 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 581270 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 759792 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 577226 | Progress: 57.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 660188 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 899829 | Progress: 89.0% | Rate: 1.9k evt/s | Remain: 53s *******[0m [1;31m ******* Event: 722175 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 584484 | Progress: 58.0% | Rate: 1.8k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 761325 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 578883 | Progress: 57.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 661694 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 901333 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 52s -------[0m [1;31m ------- Event: 723686 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 587563 | Progress: 58.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 762805 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 580615 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 663339 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 902862 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 51s *******[0m [1;31m ******* Event: 725253 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 590715 | Progress: 59.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 764260 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 582206 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 664943 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 904036 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 50s -------[0m [1;31m ------- Event: 726504 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 593828 | Progress: 59.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 765799 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 583815 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 666552 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 905355 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 50s *******[0m [1;31m ******* Event: 727909 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 596818 | Progress: 59.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 767337 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 585442 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 668153 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 906841 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 49s -------[0m [1;31m ------- Event: 729469 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 599863 | Progress: 59.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 768833 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 586648 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 669710 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 908394 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 48s *******[0m [1;31m ******* Event: 731000 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 603015 | Progress: 60.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 770328 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 588336 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 671264 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 909979 | Progress: 90.0% | Rate: 1.9k evt/s | Remain: 47s -------[0m [1;31m ------- Event: 732601 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 606096 | Progress: 60.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 771781 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 589989 | Progress: 58.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 672844 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 911459 | Progress: 91.0% | Rate: 1.9k evt/s | Remain: 47s *******[0m [1;31m ******* Event: 734129 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 609148 | Progress: 60.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 773362 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 591538 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ******* Event: 674357 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 912914 | Progress: 91.0% | Rate: 1.9k evt/s | Remain: 46s -------[0m [1;31m ------- Event: 735709 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 612313 | Progress: 61.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 774862 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 593086 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ------- Event: 675896 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 914439 | Progress: 91.0% | Rate: 1.9k evt/s | Remain: 45s *******[0m [1;31m ******* Event: 737238 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 615473 | Progress: 61.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 776382 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 594708 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 915941 | Progress: 91.0% | Rate: 1.9k evt/s | Remain: 44s -------[0m [1;31m ------- Event: 738825 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 677306 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 618382 | Progress: 61.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 777933 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 596311 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 917428 | Progress: 91.0% | Rate: 1.9k evt/s | Remain: 43s *******[0m [1;31m ******* Event: 740483 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 678588 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 621020 | Progress: 62.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 779503 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 597895 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 918926 | Progress: 91.0% | Rate: 1.9k evt/s | Remain: 43s -------[0m [1;31m ------- Event: 742005 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 680091 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 624027 | Progress: 62.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 780953 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 599492 | Progress: 59.0% | Rate: 1.7k evt/s | Remain: 4min -------[0m [1;31m ******* Event: 920382 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 42s *******[0m [1;31m ******* Event: 743510 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 681701 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 627084 | Progress: 62.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 782416 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 601155 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 4min *******[0m [1;31m ------- Event: 921894 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 41s -------[0m [1;31m ------- Event: 745017 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 683269 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 628858 | Progress: 62.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 783994 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 604099 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 923332 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 40s *******[0m [1;31m ******* Event: 746484 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 684814 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 630506 | Progress: 63.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 785422 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 606985 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 924786 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 40s -------[0m [1;31m ------- Event: 748036 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 686407 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 633114 | Progress: 63.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 787060 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 608654 | Progress: 60.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 926295 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 39s *******[0m [1;31m ******* Event: 749545 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 688050 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 636060 | Progress: 63.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 788211 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 610327 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 927782 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 38s -------[0m [1;31m ------- Event: 751068 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 689647 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 639165 | Progress: 63.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 789564 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 611955 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 929260 | Progress: 92.0% | Rate: 1.9k evt/s | Remain: 37s *******[0m [1;31m ******* Event: 752560 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 691225 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 642291 | Progress: 64.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 791007 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 613559 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 930761 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 37s -------[0m [1;31m ------- Event: 754023 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 692711 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 645367 | Progress: 64.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 792481 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 615098 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 932300 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 36s *******[0m [1;31m ******* Event: 755548 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 694248 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 648224 | Progress: 64.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 793953 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 616656 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 933754 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 35s -------[0m [1;31m ------- Event: 758252 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 695757 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 649812 | Progress: 64.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 795442 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 618147 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 935206 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 34s *******[0m [1;31m ******* Event: 761084 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 697271 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 651457 | Progress: 65.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 796927 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 619750 | Progress: 61.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 936641 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 33s -------[0m [1;31m ******* Event: 698927 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 763453 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 653118 | Progress: 65.0% | Rate: 1.9k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 798438 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 621321 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 938178 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 33s *******[0m [1;31m ------- Event: 700466 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 766254 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 654715 | Progress: 65.0% | Rate: 1.9k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 799891 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 622965 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 939257 | Progress: 93.0% | Rate: 1.9k evt/s | Remain: 32s -------[0m [1;31m ******* Event: 702026 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 769027 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 656346 | Progress: 65.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 801447 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 624183 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 940569 | Progress: 94.0% | Rate: 1.9k evt/s | Remain: 31s *******[0m [1;31m ------- Event: 703564 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 771887 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 657821 | Progress: 65.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 802936 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 625624 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 942363 | Progress: 94.0% | Rate: 1.9k evt/s | Remain: 30s -------[0m [1;31m ******* Event: 705154 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 774249 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 659106 | Progress: 65.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 804313 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 627172 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 945102 | Progress: 94.0% | Rate: 1.9k evt/s | Remain: 29s *******[0m [1;31m ------- Event: 706734 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 775751 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 660821 | Progress: 66.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 805829 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 628701 | Progress: 62.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 947878 | Progress: 94.0% | Rate: 1.9k evt/s | Remain: 27s -------[0m [1;31m ******* Event: 708318 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 777346 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 662498 | Progress: 66.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 807340 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 630357 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 950405 | Progress: 95.0% | Rate: 1.9k evt/s | Remain: 26s *******[0m [1;31m ------- Event: 709833 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 778908 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 664108 | Progress: 66.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 808869 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 631866 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 952934 | Progress: 95.0% | Rate: 1.9k evt/s | Remain: 25s -------[0m [1;31m ******* Event: 711433 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 780414 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 665863 | Progress: 66.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 810447 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 633503 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 955582 | Progress: 95.0% | Rate: 1.9k evt/s | Remain: 23s *******[0m [1;31m ------- Event: 712558 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 781999 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 667593 | Progress: 66.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 812052 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 635021 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 958273 | Progress: 95.0% | Rate: 1.9k evt/s | Remain: 22s -------[0m [1;31m ******* Event: 714110 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 783618 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 669189 | Progress: 66.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 813524 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 636612 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 961002 | Progress: 96.0% | Rate: 1.9k evt/s | Remain: 20s *******[0m [1;31m ------- Event: 715642 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 785228 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 670831 | Progress: 67.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 814964 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 638194 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 963736 | Progress: 96.0% | Rate: 1.9k evt/s | Remain: 19s -------[0m [1;31m ******* Event: 717184 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 786787 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 672528 | Progress: 67.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 816530 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 639824 | Progress: 63.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 966358 | Progress: 96.0% | Rate: 1.9k evt/s | Remain: 17s *******[0m [1;31m ------- Event: 718723 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 788323 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 674173 | Progress: 67.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 817801 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 641486 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 968479 | Progress: 96.0% | Rate: 1.9k evt/s | Remain: 16s -------[0m [1;31m ******* Event: 721031 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 789944 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 675867 | Progress: 67.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 819281 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 643094 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 969980 | Progress: 96.0% | Rate: 1.9k evt/s | Remain: 15s *******[0m [1;31m ------- Event: 724025 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 791567 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 677598 | Progress: 67.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 820777 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 644771 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 971466 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 15s -------[0m [1;31m ******* Event: 726877 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 793271 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 679272 | Progress: 67.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 822282 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 646389 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 972959 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 14s *******[0m [1;31m ------- Event: 729800 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 794902 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 680998 | Progress: 68.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 823799 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 647990 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 974547 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 13s -------[0m [1;31m ******* Event: 732735 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 796477 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 682884 | Progress: 68.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 825328 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 649548 | Progress: 64.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 975691 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 12s *******[0m [1;31m ------- Event: 735524 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 798123 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 684633 | Progress: 68.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 826823 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 651236 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 976984 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 12s -------[0m [1;31m ******* Event: 738404 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 799517 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 686346 | Progress: 68.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 828324 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 652868 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 978441 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 11s *******[0m [1;31m ------- Event: 741271 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 800954 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 688060 | Progress: 68.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 829769 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 654415 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 979830 | Progress: 97.0% | Rate: 1.9k evt/s | Remain: 10s -------[0m [1;31m ******* Event: 744138 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 802543 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 689788 | Progress: 68.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 831264 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 655938 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 981292 | Progress: 98.0% | Rate: 1.9k evt/s | Remain: 10s *******[0m [1;31m ------- Event: 746618 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 804027 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 691619 | Progress: 69.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 832775 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 657440 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 982771 | Progress: 98.0% | Rate: 1.9k evt/s | Remain: 9s -------[0m [1;31m ******* Event: 749506 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 805675 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 693357 | Progress: 69.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 834358 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 659039 | Progress: 65.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 984224 | Progress: 98.0% | Rate: 1.9k evt/s | Remain: 8s *******[0m [1;31m ------- Event: 752311 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 807363 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 695077 | Progress: 69.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 835851 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 660454 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 985809 | Progress: 98.0% | Rate: 1.9k evt/s | Remain: 7s -------[0m [1;31m ******* Event: 755310 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 809012 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 696814 | Progress: 69.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 837394 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 662123 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 987256 | Progress: 98.0% | Rate: 1.9k evt/s | Remain: 6s *******[0m [1;31m ------- Event: 758092 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 810573 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 698524 | Progress: 69.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 838872 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 663460 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 988806 | Progress: 98.0% | Rate: 1.9k evt/s | Remain: 5s -------[0m [1;31m ******* Event: 761007 | Progress: 76.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 812155 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 700108 | Progress: 70.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 840315 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 664961 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 990145 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 5s *******[0m [1;31m ------- Event: 763465 | Progress: 76.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 813678 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 701737 | Progress: 70.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 842752 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 666528 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 991587 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 4s -------[0m [1;31m ******* Event: 764937 | Progress: 76.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 815200 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 703475 | Progress: 70.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 844406 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 668077 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 993129 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 3s *******[0m [1;31m ------- Event: 766457 | Progress: 76.0% | Rate: 1.8k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 816680 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 705090 | Progress: 70.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 845849 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 669615 | Progress: 66.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 994649 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 2s -------[0m [1;31m ******* Event: 767900 | Progress: 76.0% | Rate: 1.8k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 818235 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 706714 | Progress: 70.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 847256 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 671223 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 996125 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 2s *******[0m [1;31m ------- Event: 769359 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 819768 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 708540 | Progress: 70.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 848765 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 672734 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ------- Event: 997601 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 1s -------[0m [1;31m ******* Event: 770835 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 821314 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 710334 | Progress: 71.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 850236 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 674313 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ******* Event: 998713 | Progress: 99.0% | Rate: 1.9k evt/s | Remain: 0s *******[0m [1;31m ------- Event: 772234 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 822796 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 712095 | Progress: 71.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 851367 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 676017 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;32m ------- Event: 1000000 | Progress: 100.0% | Rate: 1.9k evt/s | Remain: 0s -------[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + -> Number of bites written to file: 31675 + [1;31m ******* Event: 773813 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 824307 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 714531 | Progress: 71.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 852676 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 677629 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 775363 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 825815 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 717678 | Progress: 71.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 854192 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 679305 | Progress: 67.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 776914 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 827287 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 720901 | Progress: 72.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 855732 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 680863 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 778544 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 828826 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 857179 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 724057 | Progress: 72.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 682408 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 779888 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 830335 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 859315 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 726219 | Progress: 72.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 684866 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 781158 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 831887 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 862065 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 727882 | Progress: 72.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 687797 | Progress: 68.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 782702 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 833336 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 864955 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 729564 | Progress: 72.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 690708 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 784306 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 834881 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 867763 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 731308 | Progress: 73.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 693612 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 785864 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 836027 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 870693 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 732966 | Progress: 73.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 696431 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 3min -------[0m [1;31m ------- Event: 787536 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 837410 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 873601 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 734457 | Progress: 73.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 699069 | Progress: 69.0% | Rate: 1.7k evt/s | Remain: 3min *******[0m [1;31m ******* Event: 789145 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ------- Event: 838963 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 876364 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 736087 | Progress: 73.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 701786 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 790693 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ******* Event: 840567 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 879056 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 737789 | Progress: 73.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 704829 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 792245 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 842031 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 881790 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 739237 | Progress: 73.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 707845 | Progress: 70.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 793825 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 843571 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 884375 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 740908 | Progress: 74.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 710799 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 795344 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 845091 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 886611 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 742612 | Progress: 74.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 713770 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 796903 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 846557 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 889396 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 744241 | Progress: 74.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 716840 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 798394 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 848119 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 892318 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 745852 | Progress: 74.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 719748 | Progress: 71.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 799909 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 849579 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 894906 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 747539 | Progress: 74.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 722686 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 801513 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 851131 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 897681 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 59s -------[0m [1;31m ------- Event: 749201 | Progress: 74.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 725615 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 803028 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 852697 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 900344 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 57s *******[0m [1;31m ******* Event: 750862 | Progress: 75.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 728585 | Progress: 72.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 804534 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 854209 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 902974 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 56s -------[0m [1;31m ------- Event: 753750 | Progress: 75.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 730483 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 806063 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 855785 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 905607 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 54s *******[0m [1;31m ******* Event: 756990 | Progress: 75.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 731679 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 807620 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 857377 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 908367 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 53s -------[0m [1;31m ------- Event: 760172 | Progress: 76.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 733236 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 809192 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 858933 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 911116 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 51s *******[0m [1;31m ******* Event: 763299 | Progress: 76.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 734885 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 810732 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 860381 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 913933 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 49s -------[0m [1;31m ------- Event: 765739 | Progress: 76.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 736565 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 812345 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 861814 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 916699 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 48s *******[0m [1;31m ******* Event: 767470 | Progress: 76.0% | Rate: 1.9k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 738123 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 813822 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 863078 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 918875 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 46s -------[0m [1;31m ------- Event: 770242 | Progress: 77.0% | Rate: 1.9k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 739807 | Progress: 73.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 815251 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 864595 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 921633 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 45s *******[0m [1;31m ******* Event: 772897 | Progress: 77.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 741431 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 816721 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 866118 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 924349 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 43s -------[0m [1;31m ------- Event: 776007 | Progress: 77.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 742993 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 818283 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 867692 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 927036 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 41s *******[0m [1;31m ******* Event: 779183 | Progress: 77.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 744680 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 819973 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 869258 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 929813 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 40s -------[0m [1;31m ------- Event: 782285 | Progress: 78.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 746239 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 821586 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 870828 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 932582 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 38s *******[0m [1;31m ******* Event: 785390 | Progress: 78.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 747897 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 823187 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 872365 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 935299 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 37s -------[0m [1;31m ------- Event: 788661 | Progress: 78.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 749542 | Progress: 74.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 824765 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 873876 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 938058 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 35s *******[0m [1;31m ******* Event: 791828 | Progress: 79.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 751293 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 826405 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 875437 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 940835 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 33s -------[0m [1;31m ------- Event: 794973 | Progress: 79.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 752970 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 827902 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 876989 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 943575 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 32s *******[0m [1;31m ******* Event: 798034 | Progress: 79.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 754601 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 829430 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 878541 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 946312 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 30s -------[0m [1;31m ------- Event: 801183 | Progress: 80.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 756233 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 831062 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 880116 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 949102 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 28s *******[0m [1;31m ******* Event: 804337 | Progress: 80.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 757848 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 832740 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 881758 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 951470 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 27s -------[0m [1;31m ------- Event: 807570 | Progress: 80.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 759444 | Progress: 75.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 834313 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 883249 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 954030 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 26s *******[0m [1;31m ******* Event: 810698 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 761044 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 835874 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 884767 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 956929 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 24s -------[0m [1;31m ------- Event: 813274 | Progress: 81.0% | Rate: 1.9k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 762653 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 837439 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 886351 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 959647 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 22s *******[0m [1;31m ******* Event: 816412 | Progress: 81.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 764352 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 839045 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 887952 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 962409 | Progress: 96.0% | Rate: 1.8k evt/s | Remain: 21s -------[0m [1;31m ------- Event: 819381 | Progress: 81.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 766024 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 840650 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 889442 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 965313 | Progress: 96.0% | Rate: 1.8k evt/s | Remain: 19s *******[0m [1;31m ******* Event: 822357 | Progress: 82.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 767587 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 842352 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 891037 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 968090 | Progress: 96.0% | Rate: 1.8k evt/s | Remain: 18s -------[0m [1;31m ------- Event: 825444 | Progress: 82.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 768969 | Progress: 76.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 843890 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 892541 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 970911 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 16s *******[0m [1;31m ******* Event: 828528 | Progress: 82.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 770447 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 845404 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 894241 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 973501 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 14s -------[0m [1;31m ------- Event: 831195 | Progress: 83.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 772085 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 846870 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 895871 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 976343 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 13s *******[0m [1;31m ******* Event: 832959 | Progress: 83.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 773729 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 848123 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 897443 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 59s -------[0m [1;31m ------- Event: 979107 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 11s -------[0m [1;31m ------- Event: 834720 | Progress: 83.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 775340 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 849741 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 898839 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 59s *******[0m [1;31m ******* Event: 836479 | Progress: 83.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 981436 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 10s *******[0m [1;31m ******* Event: 776979 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 851329 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 900390 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 58s -------[0m [1;31m ------- Event: 838251 | Progress: 83.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 984203 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 8s -------[0m [1;31m ------- Event: 778652 | Progress: 77.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 852908 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 902052 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 57s *******[0m [1;31m ******* Event: 840054 | Progress: 84.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 987044 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 7s *******[0m [1;31m ******* Event: 780323 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 854563 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 903572 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 56s -------[0m [1;31m ------- Event: 841753 | Progress: 84.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 989846 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 5s -------[0m [1;31m ------- Event: 782003 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 856108 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 905183 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 55s *******[0m [1;31m ******* Event: 843516 | Progress: 84.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 992697 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 4s *******[0m [1;31m ******* Event: 783607 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 857734 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 906772 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 54s -------[0m [1;31m ------- Event: 845219 | Progress: 84.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 995598 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 2s -------[0m [1;31m ------- Event: 785175 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 859360 | Progress: 85.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 908261 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 53s *******[0m [1;31m ******* Event: 846945 | Progress: 84.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 998376 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 0s *******[0m [1;31m ******* Event: 786840 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;32m ------- Event: 1000000 | Progress: 100.0% | Rate: 1.8k evt/s | Remain: 0s -------[0m + [1;31m ******* Event: 860856 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + [1;31m ------- Event: 909769 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 52s -------[0m -> Number of bites written to file: 38152 + [1;31m ------- Event: 848602 | Progress: 84.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 788550 | Progress: 78.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 862479 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 911347 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 51s *******[0m [1;31m ******* Event: 851546 | Progress: 85.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 791693 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 2min *******[0m [1;31m ******* Event: 864149 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 912911 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 50s -------[0m [1;31m ------- Event: 854624 | Progress: 85.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 794803 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 2min -------[0m [1;31m ------- Event: 865735 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 914519 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 49s *******[0m [1;31m ******* Event: 857898 | Progress: 85.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 798006 | Progress: 79.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 867296 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 916174 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 49s -------[0m [1;31m ------- Event: 861170 | Progress: 86.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 801126 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 868902 | Progress: 86.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 917766 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 48s *******[0m [1;31m ******* Event: 864445 | Progress: 86.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 804364 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 870438 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 919292 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 47s -------[0m [1;31m ------- Event: 867619 | Progress: 86.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 807008 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 872052 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 920963 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 46s *******[0m [1;31m ******* Event: 870855 | Progress: 87.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 809939 | Progress: 80.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 873678 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 922501 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 45s -------[0m [1;31m ------- Event: 874181 | Progress: 87.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 813112 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 875313 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 924055 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 44s *******[0m [1;31m ******* Event: 877388 | Progress: 87.0% | Rate: 2.0k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 816289 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 876898 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 925687 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 43s -------[0m [1;31m ------- Event: 880780 | Progress: 88.0% | Rate: 2.0k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 819436 | Progress: 81.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 878515 | Progress: 87.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 927332 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 42s *******[0m [1;31m ******* Event: 883973 | Progress: 88.0% | Rate: 2.0k evt/s | Remain: 58s *******[0m [1;31m ******* Event: 822579 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 880147 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 928956 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 41s -------[0m [1;31m ------- Event: 887228 | Progress: 88.0% | Rate: 2.0k evt/s | Remain: 56s -------[0m [1;31m ------- Event: 825521 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 881406 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 930599 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 40s *******[0m [1;31m ******* Event: 890356 | Progress: 89.0% | Rate: 2.0k evt/s | Remain: 54s *******[0m [1;31m ******* Event: 828620 | Progress: 82.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 882884 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 932203 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 39s -------[0m [1;31m ------- Event: 893282 | Progress: 89.0% | Rate: 2.0k evt/s | Remain: 53s -------[0m [1;31m ------- Event: 831731 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 884512 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 933811 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 38s *******[0m [1;31m ******* Event: 896622 | Progress: 89.0% | Rate: 2.0k evt/s | Remain: 51s *******[0m [1;31m ******* Event: 834807 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 886136 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 935213 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 37s -------[0m [1;31m ------- Event: 899967 | Progress: 89.0% | Rate: 2.0k evt/s | Remain: 49s -------[0m [1;31m ------- Event: 837996 | Progress: 83.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 887691 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 936444 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 37s *******[0m [1;31m ******* Event: 903268 | Progress: 90.0% | Rate: 2.0k evt/s | Remain: 48s *******[0m [1;31m ******* Event: 841005 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 889282 | Progress: 88.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 938053 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 36s -------[0m [1;31m ------- Event: 906576 | Progress: 90.0% | Rate: 2.0k evt/s | Remain: 46s -------[0m [1;31m ------- Event: 843937 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 890805 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 939621 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 35s *******[0m [1;31m ******* Event: 909794 | Progress: 90.0% | Rate: 2.0k evt/s | Remain: 44s *******[0m [1;31m ******* Event: 846684 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 892475 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 941174 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 34s -------[0m [1;31m ------- Event: 913040 | Progress: 91.0% | Rate: 2.0k evt/s | Remain: 43s -------[0m [1;31m ------- Event: 849847 | Progress: 84.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 894101 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min -------[0m [1;31m ******* Event: 942810 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 33s *******[0m [1;31m ******* Event: 916466 | Progress: 91.0% | Rate: 2.0k evt/s | Remain: 41s *******[0m [1;31m ******* Event: 852965 | Progress: 85.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 895762 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 1min *******[0m [1;31m ------- Event: 944401 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 32s -------[0m [1;31m ------- Event: 919848 | Progress: 91.0% | Rate: 2.0k evt/s | Remain: 39s -------[0m [1;31m ------- Event: 855717 | Progress: 85.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 897474 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 59s -------[0m [1;31m ******* Event: 947290 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 30s *******[0m [1;31m ******* Event: 923136 | Progress: 92.0% | Rate: 2.0k evt/s | Remain: 38s *******[0m [1;31m ******* Event: 857434 | Progress: 85.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 899215 | Progress: 89.0% | Rate: 1.7k evt/s | Remain: 58s *******[0m [1;31m ------- Event: 950351 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 29s -------[0m [1;31m ------- Event: 926364 | Progress: 92.0% | Rate: 2.0k evt/s | Remain: 36s -------[0m [1;31m ------- Event: 859115 | Progress: 85.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 900821 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 57s -------[0m [1;31m ******* Event: 953463 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 27s *******[0m [1;31m ******* Event: 929426 | Progress: 92.0% | Rate: 2.0k evt/s | Remain: 34s *******[0m [1;31m ******* Event: 860771 | Progress: 86.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 902430 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 56s *******[0m [1;31m ------- Event: 956561 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 25s -------[0m [1;31m ------- Event: 932375 | Progress: 93.0% | Rate: 2.0k evt/s | Remain: 33s -------[0m [1;31m ------- Event: 862508 | Progress: 86.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 904158 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 55s -------[0m [1;31m ******* Event: 959627 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 23s *******[0m [1;31m ******* Event: 935661 | Progress: 93.0% | Rate: 2.0k evt/s | Remain: 31s *******[0m [1;31m ******* Event: 864173 | Progress: 86.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 905793 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 54s *******[0m [1;31m ------- Event: 962588 | Progress: 96.0% | Rate: 1.7k evt/s | Remain: 21s -------[0m [1;31m ------- Event: 938923 | Progress: 93.0% | Rate: 2.0k evt/s | Remain: 30s -------[0m [1;31m ------- Event: 865906 | Progress: 86.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 907479 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 53s -------[0m [1;31m ******* Event: 965595 | Progress: 96.0% | Rate: 1.7k evt/s | Remain: 19s *******[0m [1;31m ******* Event: 942121 | Progress: 94.0% | Rate: 2.0k evt/s | Remain: 28s *******[0m [1;31m ******* Event: 867646 | Progress: 86.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 909145 | Progress: 90.0% | Rate: 1.7k evt/s | Remain: 52s *******[0m [1;31m ------- Event: 968659 | Progress: 96.0% | Rate: 1.7k evt/s | Remain: 18s -------[0m [1;31m ------- Event: 945358 | Progress: 94.0% | Rate: 2.0k evt/s | Remain: 26s -------[0m [1;31m ------- Event: 869422 | Progress: 86.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 910837 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 51s -------[0m [1;31m ******* Event: 971531 | Progress: 97.0% | Rate: 1.7k evt/s | Remain: 16s *******[0m [1;31m ******* Event: 948780 | Progress: 94.0% | Rate: 2.0k evt/s | Remain: 25s *******[0m [1;31m ******* Event: 871137 | Progress: 87.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 912523 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 50s *******[0m [1;31m ------- Event: 974080 | Progress: 97.0% | Rate: 1.7k evt/s | Remain: 15s -------[0m [1;31m ------- Event: 951954 | Progress: 95.0% | Rate: 2.0k evt/s | Remain: 23s -------[0m [1;31m ------- Event: 872848 | Progress: 87.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 914161 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 49s -------[0m [1;31m ******* Event: 976866 | Progress: 97.0% | Rate: 1.7k evt/s | Remain: 13s *******[0m [1;31m ******* Event: 955259 | Progress: 95.0% | Rate: 2.0k evt/s | Remain: 21s *******[0m [1;31m ******* Event: 874543 | Progress: 87.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 915518 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 49s *******[0m [1;31m ------- Event: 979902 | Progress: 97.0% | Rate: 1.7k evt/s | Remain: 11s -------[0m [1;31m ------- Event: 958376 | Progress: 95.0% | Rate: 2.0k evt/s | Remain: 20s -------[0m [1;31m ------- Event: 876199 | Progress: 87.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 917117 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 48s -------[0m [1;31m ******* Event: 982933 | Progress: 98.0% | Rate: 1.7k evt/s | Remain: 9s *******[0m [1;31m ******* Event: 961707 | Progress: 96.0% | Rate: 2.1k evt/s | Remain: 18s *******[0m [1;31m ******* Event: 877909 | Progress: 87.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 918755 | Progress: 91.0% | Rate: 1.7k evt/s | Remain: 47s *******[0m [1;31m ------- Event: 985965 | Progress: 98.0% | Rate: 1.7k evt/s | Remain: 8s -------[0m [1;31m ------- Event: 965040 | Progress: 96.0% | Rate: 2.1k evt/s | Remain: 17s -------[0m [1;31m ------- Event: 879561 | Progress: 87.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 920425 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 46s -------[0m [1;31m ******* Event: 989060 | Progress: 98.0% | Rate: 1.7k evt/s | Remain: 6s *******[0m [1;31m ******* Event: 967669 | Progress: 96.0% | Rate: 2.1k evt/s | Remain: 15s *******[0m [1;31m ******* Event: 881031 | Progress: 88.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 922161 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 45s *******[0m [1;31m ------- Event: 992142 | Progress: 99.0% | Rate: 1.7k evt/s | Remain: 4s -------[0m [1;31m ------- Event: 970883 | Progress: 97.0% | Rate: 2.1k evt/s | Remain: 14s -------[0m [1;31m ------- Event: 882692 | Progress: 88.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 923832 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 44s -------[0m [1;31m ******* Event: 995251 | Progress: 99.0% | Rate: 1.7k evt/s | Remain: 2s *******[0m [1;31m ******* Event: 974392 | Progress: 97.0% | Rate: 2.1k evt/s | Remain: 12s *******[0m [1;31m ******* Event: 884092 | Progress: 88.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 925503 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 43s *******[0m [1;31m ------- Event: 998346 | Progress: 99.0% | Rate: 1.7k evt/s | Remain: 0s -------[0m [1;31m ------- Event: 977724 | Progress: 97.0% | Rate: 2.1k evt/s | Remain: 10s -------[0m [1;31m ------- Event: 885848 | Progress: 88.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;32m ******* Event: 1000000 | Progress: 100.0% | Rate: 1.7k evt/s | Remain: 0s *******[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + [1;31m ------- Event: 927146 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 42s -------[0m -> Number of bites written to file: 32221 + [1;31m ******* Event: 980896 | Progress: 98.0% | Rate: 2.1k evt/s | Remain: 9s *******[0m [1;31m ******* Event: 888165 | Progress: 88.0% | Rate: 1.8k evt/s | Remain: 1min *******[0m [1;31m ******* Event: 929889 | Progress: 92.0% | Rate: 1.7k evt/s | Remain: 40s *******[0m [1;31m ------- Event: 984186 | Progress: 98.0% | Rate: 2.1k evt/s | Remain: 7s -------[0m [1;31m ------- Event: 891405 | Progress: 89.0% | Rate: 1.8k evt/s | Remain: 1min -------[0m [1;31m ------- Event: 932842 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 39s -------[0m [1;31m ******* Event: 987392 | Progress: 98.0% | Rate: 2.1k evt/s | Remain: 6s *******[0m [1;31m ******* Event: 894582 | Progress: 89.0% | Rate: 1.8k evt/s | Remain: 59s *******[0m [1;31m ******* Event: 935899 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 37s *******[0m [1;31m ------- Event: 990659 | Progress: 99.0% | Rate: 2.1k evt/s | Remain: 4s -------[0m [1;31m ------- Event: 897727 | Progress: 89.0% | Rate: 1.8k evt/s | Remain: 58s -------[0m [1;31m ------- Event: 939049 | Progress: 93.0% | Rate: 1.7k evt/s | Remain: 35s -------[0m [1;31m ******* Event: 993845 | Progress: 99.0% | Rate: 2.1k evt/s | Remain: 2s *******[0m [1;31m ******* Event: 900895 | Progress: 90.0% | Rate: 1.8k evt/s | Remain: 56s *******[0m [1;31m ******* Event: 942155 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 33s *******[0m [1;31m ------- Event: 997135 | Progress: 99.0% | Rate: 2.1k evt/s | Remain: 1s -------[0m [1;31m ------- Event: 904019 | Progress: 90.0% | Rate: 1.8k evt/s | Remain: 54s -------[0m [1;31m ------- Event: 945281 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 31s -------[0m [1;32m ******* Event: 1000000 | Progress: 100.0% | Rate: 2.1k evt/s | Remain: 0s *******[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + [1;31m ******* Event: 907180 | Progress: 90.0% | Rate: 1.8k evt/s | Remain: 52s *******[0m -> Number of bites written to file: 34301 + [1;31m ******* Event: 948327 | Progress: 94.0% | Rate: 1.7k evt/s | Remain: 29s *******[0m [1;31m ------- Event: 910349 | Progress: 91.0% | Rate: 1.8k evt/s | Remain: 50s -------[0m [1;31m ------- Event: 951040 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 28s -------[0m [1;31m ******* Event: 913458 | Progress: 91.0% | Rate: 1.8k evt/s | Remain: 48s *******[0m [1;31m ******* Event: 954232 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 26s *******[0m [1;31m ------- Event: 916208 | Progress: 91.0% | Rate: 1.8k evt/s | Remain: 47s -------[0m [1;31m ------- Event: 957464 | Progress: 95.0% | Rate: 1.7k evt/s | Remain: 24s -------[0m [1;31m ******* Event: 919564 | Progress: 91.0% | Rate: 1.8k evt/s | Remain: 45s *******[0m [1;31m ******* Event: 960727 | Progress: 96.0% | Rate: 1.7k evt/s | Remain: 22s *******[0m [1;31m ------- Event: 922864 | Progress: 92.0% | Rate: 1.8k evt/s | Remain: 43s -------[0m [1;31m ------- Event: 963977 | Progress: 96.0% | Rate: 1.7k evt/s | Remain: 20s -------[0m [1;31m ******* Event: 926156 | Progress: 92.0% | Rate: 1.8k evt/s | Remain: 41s *******[0m [1;31m ******* Event: 967203 | Progress: 96.0% | Rate: 1.7k evt/s | Remain: 18s *******[0m [1;31m ------- Event: 929321 | Progress: 92.0% | Rate: 1.8k evt/s | Remain: 39s -------[0m [1;31m ------- Event: 970543 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 16s -------[0m [1;31m ******* Event: 932557 | Progress: 93.0% | Rate: 1.8k evt/s | Remain: 37s *******[0m [1;31m ******* Event: 973694 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 14s *******[0m [1;31m ------- Event: 935684 | Progress: 93.0% | Rate: 1.8k evt/s | Remain: 35s -------[0m [1;31m ------- Event: 977079 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 13s -------[0m [1;31m ******* Event: 939079 | Progress: 93.0% | Rate: 1.8k evt/s | Remain: 33s *******[0m [1;31m ******* Event: 980355 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 11s *******[0m [1;31m ------- Event: 942414 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 32s -------[0m [1;31m ------- Event: 983510 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 9s -------[0m [1;31m ******* Event: 945762 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 30s *******[0m [1;31m ******* Event: 986529 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 7s *******[0m [1;31m ------- Event: 949130 | Progress: 94.0% | Rate: 1.8k evt/s | Remain: 28s -------[0m [1;31m ------- Event: 989849 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 5s -------[0m [1;31m ******* Event: 951920 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 26s *******[0m [1;31m ******* Event: 993132 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 3s *******[0m [1;31m ------- Event: 954995 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 24s -------[0m [1;31m ------- Event: 996439 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 2s -------[0m [1;31m ******* Event: 958328 | Progress: 95.0% | Rate: 1.8k evt/s | Remain: 22s *******[0m [1;31m ******* Event: 999770 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 0s *******[0m [1;32m ------- Event: 1000000 | Progress: 100.0% | Rate: 1.8k evt/s | Remain: 0s -------[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + -> Number of bites written to file: 39004 + [1;31m ------- Event: 961536 | Progress: 96.0% | Rate: 1.8k evt/s | Remain: 21s -------[0m [1;31m ******* Event: 964817 | Progress: 96.0% | Rate: 1.8k evt/s | Remain: 19s *******[0m [1;31m ------- Event: 968270 | Progress: 96.0% | Rate: 1.8k evt/s | Remain: 17s -------[0m [1;31m ******* Event: 971790 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 15s *******[0m [1;31m ------- Event: 975413 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 13s -------[0m [1;31m ******* Event: 978972 | Progress: 97.0% | Rate: 1.8k evt/s | Remain: 11s *******[0m [1;31m ------- Event: 982463 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 9s -------[0m [1;31m ******* Event: 985841 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 7s *******[0m [1;31m ------- Event: 989198 | Progress: 98.0% | Rate: 1.8k evt/s | Remain: 5s -------[0m [1;31m ******* Event: 992342 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 4s *******[0m [1;31m ------- Event: 995889 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 2s -------[0m [1;31m ******* Event: 999649 | Progress: 99.0% | Rate: 1.8k evt/s | Remain: 0s *******[0m [1;32m ------- Event: 1000000 | Progress: 100.0% | Rate: 1.9k evt/s | Remain: 0s -------[0m + + +Root Output summary + - global tree and file + -> Number of entries in the global Tree: 1000000 + -> Number of bites written to file: 33164 +///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/1Alpha1Electron_2mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 2.0000 + TunnelDist (mm): 2.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// +Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m +[0mWarning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 1188 | Progress: 0.0% | Rate: 591.9 evt/s | Remain: 28min *******[0m [1;31m ------- Event: 2467 | Progress: 0.0% | Rate: 818.4 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 3783 | Progress: 0.0% | Rate: 935.4 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 4972 | Progress: 0.0% | Rate: 980.1 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 6170 | Progress: 0.0% | Rate: 1.0k evt/s | Remain: 16min *******[0m [1;31m ------- Event: 7537 | Progress: 0.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 8787 | Progress: 0.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 9949 | Progress: 0.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 11229 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 12498 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 13659 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 14915 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 16142 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 17528 | Progress: 1.0% | Rate: 1.2k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 18719 | Progress: 1.0% | Rate: 1.2k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 19939 | Progress: 1.0% | Rate: 1.2k evt/s | Remain: 14min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/1Alpha1Electron_3mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 3.0000 + TunnelDist (mm): 3.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ******* Event: 21161 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 22374 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ******* Event: 23527 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ------- Event: 24524 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 25850 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ------- Event: 27076 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ******* Event: 28212 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ------- Event: 29414 | Progress: 2.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 30486 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 1225 | Progress: 0.0% | Rate: 607.9 evt/s | Remain: 27min *******[0m [1;31m ------- Event: 31558 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 2241 | Progress: 0.0% | Rate: 726.3 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 32628 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 3404 | Progress: 0.0% | Rate: 835.3 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 33832 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 4578 | Progress: 0.0% | Rate: 897.3 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 35005 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 5678 | Progress: 0.0% | Rate: 931.0 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 36187 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 6866 | Progress: 0.0% | Rate: 967.3 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 37433 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 8031 | Progress: 0.0% | Rate: 991.9 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 38497 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 9277 | Progress: 0.0% | Rate: 1.0k evt/s | Remain: 16min -------[0m [1;31m ******* Event: 39695 | Progress: 3.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 10341 | Progress: 1.0% | Rate: 1.0k evt/s | Remain: 16min *******[0m [1;31m ------- Event: 40713 | Progress: 4.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 11424 | Progress: 1.0% | Rate: 1.0k evt/s | Remain: 16min -------[0m [1;31m ******* Event: 41949 | Progress: 4.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 12399 | Progress: 1.0% | Rate: 1.0k evt/s | Remain: 16min *******[0m [1;31m ------- Event: 43103 | Progress: 4.0% | Rate: 1.2k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 13570 | Progress: 1.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 44166 | Progress: 4.0% | Rate: 1.2k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 14756 | Progress: 1.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 45108 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 16010 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 46066 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 17089 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 47202 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 18247 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 48298 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 19375 | Progress: 1.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 49334 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 20580 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 50279 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 21737 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 51453 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 22952 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 52451 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 24196 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 53499 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 25203 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/1Alpha1Electron_4mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 4.0000 + TunnelDist (mm): 4.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ******* Event: 54478 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 26301 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 55570 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 27342 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 56497 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 28324 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 57586 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min -------[0m [1;31m ------- Event: 29346 | Progress: 2.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 58629 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 13min *******[0m [1;31m ******* Event: 30462 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 59553 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ------- Event: 31505 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 60437 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ******* Event: 32440 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ------- Event: 61425 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ------- Event: 33384 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bin [1;31m ******* Event: 62386 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m s + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 34317 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 63351 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 1042 | Progress: 0.0% | Rate: 515.5 evt/s | Remain: 32min *******[0m [1;31m ------- Event: 35251 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 64252 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 2025 | Progress: 0.0% | Rate: 671.2 evt/s | Remain: 24min -------[0m [1;31m ******* Event: 36182 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 65204 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 2916 | Progress: 0.0% | Rate: 722.7 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 37280 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 66203 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 3897 | Progress: 0.0% | Rate: 774.3 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 38285 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 67139 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 4720 | Progress: 0.0% | Rate: 782.4 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 39239 | Progress: 3.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 68195 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 5578 | Progress: 0.0% | Rate: 793.0 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 40329 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 69128 | Progress: 6.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 6644 | Progress: 0.0% | Rate: 827.0 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 41347 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 70135 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 7795 | Progress: 0.0% | Rate: 862.9 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 42434 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 71199 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 8747 | Progress: 0.0% | Rate: 871.8 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 43332 | Progress: 4.0% | Rate: 1.1k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 72253 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 9799 | Progress: 0.0% | Rate: 888.2 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 44252 | Progress: 4.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 73245 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 10840 | Progress: 1.0% | Rate: 900.8 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 45288 | Progress: 4.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 74236 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 11927 | Progress: 1.0% | Rate: 915.1 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 46371 | Progress: 4.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 75285 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 12998 | Progress: 1.0% | Rate: 926.3 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 47435 | Progress: 4.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 76307 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 14006 | Progress: 1.0% | Rate: 931.7 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 48441 | Progress: 4.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 77254 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 15079 | Progress: 1.0% | Rate: 940.5 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 49492 | Progress: 4.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 78323 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 16079 | Progress: 1.0% | Rate: 942.9 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 50498 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 79418 | Progress: 7.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 17102 | Progress: 1.0% | Rate: 947.2 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 51619 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 80502 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 18170 | Progress: 1.0% | Rate: 953.6 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 52812 | Progress: 5.0% | Rate: 1.1k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 81503 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 19153 | Progress: 1.0% | Rate: 955.0 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 53684 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 82582 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 20080 | Progress: 2.0% | Rate: 953.7 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 54804 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 83569 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 21042 | Progress: 2.0% | Rate: 954.1 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 55931 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 84446 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 21887 | Progress: 2.0% | Rate: 949.3 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 56991 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 85383 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 22858 | Progress: 2.0% | Rate: 950.2 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 57954 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/1Alpha1Electron_5mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 5.0000 + TunnelDist (mm): 5.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ******* Event: 86373 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 23905 | Progress: 2.0% | Rate: 954.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 58767 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 87373 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 24902 | Progress: 2.0% | Rate: 955.7 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 59634 | Progress: 5.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 88182 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 25789 | Progress: 2.0% | Rate: 953.1 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 60531 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 89108 | Progress: 8.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 26567 | Progress: 2.0% | Rate: 946.7 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 61395 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 90003 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 27403 | Progress: 2.0% | Rate: 941.8 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 62189 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 90817 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 28258 | Progress: 2.0% | Rate: 938.9 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 63238 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 91677 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 29259 | Progress: 2.0% | Rate: 940.9 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 64246 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + [1;31m ------- Event: 92605 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ******* Event: 30244 | Progress: 3.0% | Rate: 942.1 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 65148 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 93581 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 31129 | Progress: 3.0% | Rate: 940.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 65976 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ------- Event: 94505 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 32030 | Progress: 3.0% | Rate: 938.8 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 66882 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 843 | Progress: 0.0% | Rate: 420.8 evt/s | Remain: 39min *******[0m [1;31m ******* Event: 95220 | Progress: 9.0% | Rate: 1.1k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 32924 | Progress: 3.0% | Rate: 936.6 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 67720 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 1724 | Progress: 0.0% | Rate: 573.9 evt/s | Remain: 28min -------[0m [1;31m ------- Event: 95995 | Progress: 9.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 33924 | Progress: 3.0% | Rate: 938.3 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 68620 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 2521 | Progress: 0.0% | Rate: 629.5 evt/s | Remain: 26min *******[0m [1;31m ******* Event: 96952 | Progress: 9.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 34821 | Progress: 3.0% | Rate: 937.2 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 69712 | Progress: 6.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 3401 | Progress: 0.0% | Rate: 679.6 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 97849 | Progress: 9.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 35783 | Progress: 3.0% | Rate: 937.8 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 70752 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 4251 | Progress: 0.0% | Rate: 707.6 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 98697 | Progress: 9.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 36531 | Progress: 3.0% | Rate: 932.8 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 71600 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 5082 | Progress: 0.0% | Rate: 725.2 evt/s | Remain: 22min -------[0m [1;31m ------- Event: 99513 | Progress: 9.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 37526 | Progress: 3.0% | Rate: 933.2 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 72549 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 5863 | Progress: 0.0% | Rate: 732.1 evt/s | Remain: 22min *******[0m [1;31m ******* Event: 100509 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 38410 | Progress: 3.0% | Rate: 931.7 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 73312 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 6465 | Progress: 0.0% | Rate: 711.8 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 101444 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 39365 | Progress: 3.0% | Rate: 932.3 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 73979 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 7029 | Progress: 0.0% | Rate: 696.3 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 102358 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 40080 | Progress: 4.0% | Rate: 927.1 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 74938 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min *******[0m [1;31m ------- Event: 7684 | Progress: 0.0% | Rate: 692.3 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 103221 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 40899 | Progress: 4.0% | Rate: 924.6 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 75698 | Progress: 7.0% | Rate: 1.0k evt/s | Remain: 15min -------[0m [1;31m ******* Event: 8469 | Progress: 0.0% | Rate: 700.0 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 104084 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 41784 | Progress: 4.0% | Rate: 923.7 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 76441 | Progress: 7.0% | Rate: 1000.0 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 9240 | Progress: 0.0% | Rate: 704.9 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 104930 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 42551 | Progress: 4.0% | Rate: 920.1 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 77043 | Progress: 7.0% | Rate: 994.8 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 9938 | Progress: 0.0% | Rate: 704.4 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 105545 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 43097 | Progress: 4.0% | Rate: 912.2 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 77457 | Progress: 7.0% | Rate: 987.4 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 10642 | Progress: 1.0% | Rate: 704.4 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 106433 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 43627 | Progress: 4.0% | Rate: 904.0 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 77902 | Progress: 7.0% | Rate: 980.5 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 11504 | Progress: 1.0% | Rate: 714.1 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 107108 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 44221 | Progress: 4.0% | Rate: 897.6 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 78477 | Progress: 7.0% | Rate: 975.4 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 12258 | Progress: 1.0% | Rate: 715.3 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 108005 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 45086 | Progress: 4.0% | Rate: 896.8 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 79254 | Progress: 7.0% | Rate: 973.0 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 12958 | Progress: 1.0% | Rate: 714.2 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 108680 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 45990 | Progress: 4.0% | Rate: 897.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 80152 | Progress: 8.0% | Rate: 972.1 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 14003 | Progress: 1.0% | Rate: 731.1 evt/s | Remain: 22min -------[0m [1;31m ------- Event: 109498 | Progress: 10.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 46900 | Progress: 4.0% | Rate: 897.2 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 80954 | Progress: 8.0% | Rate: 969.9 evt/s | Remain: 15min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/1Alpha1Electron_7mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 7.0000 + TunnelDist (mm): 7.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ******* Event: 14825 | Progress: 1.0% | Rate: 735.6 evt/s | Remain: 22min *******[0m [1;31m ******* Event: 110335 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 47440 | Progress: 4.0% | Rate: 890.4 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 81789 | Progress: 8.0% | Rate: 968.3 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 15454 | Progress: 1.0% | Rate: 730.5 evt/s | Remain: 22min -------[0m [1;31m ------- Event: 111128 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 48025 | Progress: 4.0% | Rate: 884.8 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 82709 | Progress: 8.0% | Rate: 967.7 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 16398 | Progress: 1.0% | Rate: 740.2 evt/s | Remain: 22min *******[0m [1;31m ******* Event: 111984 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 48571 | Progress: 4.0% | Rate: 878.6 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 83503 | Progress: 8.0% | Rate: 965.7 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 17207 | Progress: 1.0% | Rate: 743.2 evt/s | Remain: 22min -------[0m [1;31m ------- Event: 112832 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 49079 | Progress: 4.0% | Rate: 871.8 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 84322 | Progress: 8.0% | Rate: 964.0 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 17891 | Progress: 1.0% | Rate: 740.0 evt/s | Remain: 22min *******[0m [1;31m ******* Event: 113654 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 49578 | Progress: 4.0% | Rate: 864.8 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 85136 | Progress: 8.0% | Rate: 962.2 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 18673 | Progress: 1.0% | Rate: 741.6 evt/s | Remain: 22min -------[0m [1;31m ------- Event: 114569 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 50124 | Progress: 5.0% | Rate: 859.3 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 85903 | Progress: 8.0% | Rate: 960.0 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 19530 | Progress: 1.0% | Rate: 746.0 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 115496 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 50696 | Progress: 5.0% | Rate: 854.4 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 86675 | Progress: 8.0% | Rate: 957.9 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 20265 | Progress: 2.0% | Rate: 745.6 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 116419 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 51228 | Progress: 5.0% | Rate: 849.0 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 87564 | Progress: 8.0% | Rate: 957.0 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 20964 | Progress: 2.0% | Rate: 744.0 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 117302 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ------- Event: 51808 | Progress: 5.0% | Rate: 844.6 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 88464 | Progress: 8.0% | Rate: 956.3 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 21713 | Progress: 2.0% | Rate: 744.1 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 118081 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min -------[0m [1;31m ******* Event: 52377 | Progress: 5.0% | Rate: 840.1 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 89293 | Progress: 8.0% | Rate: 954.9 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 22596 | Progress: 2.0% | Rate: 748.7 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 118753 | Progress: 11.0% | Rate: 1.0k evt/s | Remain: 14min *******[0m [1;31m ******* Event: 90206 | Progress: 9.0% | Rate: 954.5 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 52900 | Progress: 5.0% | Rate: 833.9 evt/s | Remain: 18min -------[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + [1;31m ------- Event: 23432 | Progress: 2.0% | Rate: 751.5 evt/s | Remain: 21min -------[0m +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ------- Event: 119483 | Progress: 11.0% | Rate: 997.9 evt/s | Remain: 14min -------[0m [1;31m ------- Event: 91141 | Progress: 9.0% | Rate: 954.3 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 53565 | Progress: 5.0% | Rate: 831.3 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 24173 | Progress: 2.0% | Rate: 751.2 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 120102 | Progress: 12.0% | Rate: 994.7 evt/s | Remain: 14min *******[0m [1;31m ******* Event: 92074 | Progress: 9.0% | Rate: 954.0 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 54483 | Progress: 5.0% | Rate: 832.6 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 24978 | Progress: 2.0% | Rate: 752.8 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 120738 | Progress: 12.0% | Rate: 991.7 evt/s | Remain: 14min -------[0m [0mWarning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== [1;31m ------- Event: 92971 | Progress: 9.0% | Rate: 953.4 evt/s | Remain: 15min -------[0m + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models [1;31m ******* Event: 55267 | Progress: 5.0% | Rate: 831.8 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 25762 | Progress: 2.0% | Rate: 753.7 evt/s | Remain: 21min *******[0m for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 121362 | Progress: 12.0% | Rate: 988.7 evt/s | Remain: 14min *******[0m [1;31m ******* Event: 94026 | Progress: 9.0% | Rate: 954.5 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 56177 | Progress: 5.0% | Rate: 832.5 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 459 | Progress: 0.0% | Rate: 228.9 evt/s | Remain: 72min *******[0m [1;31m ------- Event: 26624 | Progress: 2.0% | Rate: 755.8 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 121905 | Progress: 12.0% | Rate: 985.0 evt/s | Remain: 14min -------[0m [1;31m ------- Event: 94955 | Progress: 9.0% | Rate: 954.2 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 57154 | Progress: 5.0% | Rate: 834.6 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 1005 | Progress: 0.0% | Rate: 331.1 evt/s | Remain: 50min -------[0m [1;31m ******* Event: 27467 | Progress: 2.0% | Rate: 758.1 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 122477 | Progress: 12.0% | Rate: 981.7 evt/s | Remain: 14min *******[0m [1;31m ******* Event: 95848 | Progress: 9.0% | Rate: 953.6 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 58028 | Progress: 5.0% | Rate: 835.0 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 1650 | Progress: 0.0% | Rate: 409.2 evt/s | Remain: 40min *******[0m [1;31m ------- Event: 28352 | Progress: 2.0% | Rate: 761.5 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 122949 | Progress: 12.0% | Rate: 977.6 evt/s | Remain: 14min -------[0m [1;31m ------- Event: 96745 | Progress: 9.0% | Rate: 953.0 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 58921 | Progress: 5.0% | Rate: 835.8 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 2060 | Progress: 0.0% | Rate: 409.3 evt/s | Remain: 40min -------[0m [1;31m ******* Event: 29239 | Progress: 2.0% | Rate: 764.6 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 123532 | Progress: 12.0% | Rate: 974.4 evt/s | Remain: 14min *******[0m [1;31m ******* Event: 97542 | Progress: 9.0% | Rate: 951.3 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 59792 | Progress: 5.0% | Rate: 836.2 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 2598 | Progress: 0.0% | Rate: 429.8 evt/s | Remain: 38min *******[0m [1;31m ------- Event: 30101 | Progress: 3.0% | Rate: 766.6 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 124097 | Progress: 12.0% | Rate: 971.2 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 98365 | Progress: 9.0% | Rate: 949.3 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 60789 | Progress: 6.0% | Rate: 838.1 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 3083 | Progress: 0.0% | Rate: 437.7 evt/s | Remain: 37min -------[0m [1;31m ******* Event: 30832 | Progress: 3.0% | Rate: 765.3 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 124956 | Progress: 12.0% | Rate: 970.3 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 98901 | Progress: 9.0% | Rate: 945.3 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 61711 | Progress: 6.0% | Rate: 838.7 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 3694 | Progress: 0.0% | Rate: 459.2 evt/s | Remain: 36min *******[0m [1;31m ------- Event: 31600 | Progress: 3.0% | Rate: 765.4 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 125903 | Progress: 12.0% | Rate: 970.2 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 99468 | Progress: 9.0% | Rate: 941.6 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 62702 | Progress: 6.0% | Rate: 840.7 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 4163 | Progress: 0.0% | Rate: 460.0 evt/s | Remain: 36min -------[0m [1;31m ******* Event: 32315 | Progress: 3.0% | Rate: 764.1 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 126794 | Progress: 12.0% | Rate: 969.5 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 100002 | Progress: 10.0% | Rate: 937.8 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 63731 | Progress: 6.0% | Rate: 843.2 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 4689 | Progress: 0.0% | Rate: 466.5 evt/s | Remain: 35min *******[0m [1;31m ------- Event: 33089 | Progress: 3.0% | Rate: 764.4 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 127731 | Progress: 12.0% | Rate: 969.3 evt/s | Remain: 14min -------[0m [1;31m ------- Event: 100550 | Progress: 10.0% | Rate: 934.1 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 64688 | Progress: 6.0% | Rate: 844.7 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 5180 | Progress: 0.0% | Rate: 468.7 evt/s | Remain: 35min -------[0m [1;31m ******* Event: 33888 | Progress: 3.0% | Rate: 765.1 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 128384 | Progress: 12.0% | Rate: 966.9 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 101399 | Progress: 10.0% | Rate: 933.3 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 65632 | Progress: 6.0% | Rate: 846.0 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 5700 | Progress: 0.0% | Rate: 472.8 evt/s | Remain: 35min *******[0m [1;31m ------- Event: 34632 | Progress: 3.0% | Rate: 764.5 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 128929 | Progress: 12.0% | Rate: 963.6 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 102344 | Progress: 10.0% | Rate: 933.4 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 66592 | Progress: 6.0% | Rate: 846.6 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 6314 | Progress: 0.0% | Rate: 483.6 evt/s | Remain: 34min -------[0m [1;31m ******* Event: 35366 | Progress: 3.0% | Rate: 763.9 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 129471 | Progress: 12.0% | Rate: 960.5 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 103354 | Progress: 10.0% | Rate: 934.1 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 67436 | Progress: 6.0% | Rate: 846.6 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 6852 | Progress: 0.0% | Rate: 487.5 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 36096 | Progress: 3.0% | Rate: 763.2 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 129966 | Progress: 12.0% | Rate: 957.0 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 104338 | Progress: 10.0% | Rate: 934.4 evt/s | Remain: 15min -------[0m [1;31m ******* Event: 68319 | Progress: 6.0% | Rate: 846.7 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 7410 | Progress: 0.0% | Rate: 492.0 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 36795 | Progress: 3.0% | Rate: 761.6 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 130434 | Progress: 13.0% | Rate: 953.4 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 105224 | Progress: 10.0% | Rate: 934.0 evt/s | Remain: 15min *******[0m [1;31m ------- Event: 69240 | Progress: 6.0% | Rate: 847.4 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 8010 | Progress: 0.0% | Rate: 496.9 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 37602 | Progress: 3.0% | Rate: 762.5 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 130954 | Progress: 13.0% | Rate: 950.3 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 106001 | Progress: 10.0% | Rate: 932.6 evt/s | Remain: 15min -------[0m ///// No Project Configuration: +AnalysisOutput= /local/home/admin-local/nptool/Outputs/Analysis/ +SimulationOutput= /local/home/admin-local/nptool/Outputs/Simulation/ +CalibrationOutput= /local/home/admin-local/nptool/Outputs/Calibration/ +EnergyLoss= /local/home/admin-local/nptool/Inputs/EnergyLoss/ +******************************************************************************** +*********************************** NPTool *********************************** +******************************************************************************** + NPLib version: nplib-3-0-0 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +******************************************************************************** +******************************** NPSimulation ******************************** +******************************************************************************** +NPSimulation version: npsimulation-2-1-29 + Copyright: NPTool Collaboration + Gitlab: https://gitlab.in2p3.fr/np/nptool +******************************************************************************** + +/////////// ROOT Output files /////////// +Initializing ouput trees and files + - Creating output file /local/home/admin-local/nptool/Outputs/Simulation/Electron/Test/1Alpha1Electron_10mm.root + +************************************************************** + Geant4 version Name: geant4-10-07-patch-02 (11-June-2021) + Copyright : Geant4 Collaboration + References : NIM A 506 (2003), 250-303 + : IEEE-TNS 53 (2006), 270-278 + : NIM A 835 (2016), 186-225 + WWW : http://geant4.org/ +************************************************************** + +Reading Physics list option file PhysicsListOption.txt +//// Using G4EmStandardPhysics_option4 Physics List //// +//// Radioactive decay activated //// + [1;31m ******* Event: 69997 | Progress: 6.0% | Rate: 846.1 evt/s | Remain: 18min *******[0m +[1;36m//// Reading detector file ./Detector/VariableGeom.detector + + +[1;36m//// Changing detector file to ./Detector/VariableGeom.detector + +//// TARGET //// +//// Solid Target found + Thickness (micrometer): 0.0900 + Angle (deg): 0.0000 + Radius (mm): 7.5000 + Material: C + X (mm): 0.0000 + Y (mm): 0.0000 + Z (mm): 0.0000 +///////////////////////////////////////// +//// Adding Detector SEASON +//// 1 detectors found + +//// SEASON 1 + DSSD1Dist (mm): 10.0000 + TunnelDist (mm): 10.0000 + EnergyThreshold (keV): 20.0000 + FoilRadius (mm): 9.0000 + FoilThickness (void): 20.0000 + UseDelocStation: False + UseWheel: False + UseChamber: False + Foil Thickness : 20 -> 88.4956 nm with a carbon density rho = 2.26 g/cm3 +///////////////////////////////////////// + [1;31m ------- Event: 8485 | Progress: 0.0% | Rate: 495.6 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 38233 | Progress: 3.0% | Rate: 759.9 evt/s | Remain: 21min *******[0m [1;31m ******* Event: 131404 | Progress: 13.0% | Rate: 946.6 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 106575 | Progress: 10.0% | Rate: 929.5 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 70886 | Progress: 7.0% | Rate: 846.6 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 8881 | Progress: 0.0% | Rate: 490.0 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 39018 | Progress: 3.0% | Rate: 760.3 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 131902 | Progress: 13.0% | Rate: 943.4 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 107185 | Progress: 10.0% | Rate: 926.7 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 71812 | Progress: 7.0% | Rate: 847.5 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 39750 | Progress: 3.0% | Rate: 759.8 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 9375 | Progress: 0.0% | Rate: 488.7 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 132420 | Progress: 13.0% | Rate: 940.4 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 107849 | Progress: 10.0% | Rate: 924.4 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 72636 | Progress: 7.0% | Rate: 847.2 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 40576 | Progress: 4.0% | Rate: 761.0 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 9930 | Progress: 0.0% | Rate: 491.8 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 132875 | Progress: 13.0% | Rate: 936.9 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 108367 | Progress: 10.0% | Rate: 920.9 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 73487 | Progress: 7.0% | Rate: 847.3 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 41333 | Progress: 4.0% | Rate: 760.3 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 10407 | Progress: 1.0% | Rate: 491.1 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 133441 | Progress: 13.0% | Rate: 934.2 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 108970 | Progress: 10.0% | Rate: 918.2 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 74329 | Progress: 7.0% | Rate: 847.2 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 42130 | Progress: 4.0% | Rate: 761.0 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 10927 | Progress: 1.0% | Rate: 492.3 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 134005 | Progress: 13.0% | Rate: 931.6 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 109418 | Progress: 10.0% | Rate: 914.3 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 75092 | Progress: 7.0% | Rate: 846.2 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 42947 | Progress: 4.0% | Rate: 762.0 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 11439 | Progress: 1.0% | Rate: 493.1 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 134509 | Progress: 13.0% | Rate: 928.6 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 109981 | Progress: 10.0% | Rate: 911.3 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 75958 | Progress: 7.0% | Rate: 846.5 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 43814 | Progress: 4.0% | Rate: 763.7 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 11968 | Progress: 1.0% | Rate: 494.6 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 134981 | Progress: 13.0% | Rate: 925.5 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 110480 | Progress: 11.0% | Rate: 907.7 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 76916 | Progress: 7.0% | Rate: 847.7 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 44529 | Progress: 4.0% | Rate: 762.9 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 12432 | Progress: 1.0% | Rate: 493.3 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 135496 | Progress: 13.0% | Rate: 922.7 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 110905 | Progress: 11.0% | Rate: 903.8 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 77702 | Progress: 7.0% | Rate: 847.0 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 45280 | Progress: 4.0% | Rate: 762.5 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 12922 | Progress: 1.0% | Rate: 493.2 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 135936 | Progress: 13.0% | Rate: 919.4 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 111469 | Progress: 11.0% | Rate: 901.0 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 78654 | Progress: 7.0% | Rate: 848.2 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 13531 | Progress: 1.0% | Rate: 497.4 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 46109 | Progress: 4.0% | Rate: 763.5 evt/s | Remain: 20min *******[0m [1;31m ******* Event: 136518 | Progress: 13.0% | Rate: 917.1 evt/s | Remain: 15min *******[0m Size of scorers : +67.975 67.975 32 32 +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +Checking overlaps for volume SEASON (G4Box) ... OK! +[0m//////////// Starting UI //////////// +Available UI session types: [ Qt, GAG, tcsh, csh ] + [1;31m ******* Event: 111974 | Progress: 11.0% | Rate: 897.8 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 79582 | Progress: 7.0% | Rate: 849.0 evt/s | Remain: 18min -------[0m +[1;35m//// Reading event generator file ./sources/alpha_electron_cascade_5mm.source + +[1;35m//// MultipleParticle token found +//////////// Block //////////// + * Main Token: MultipleParticle + * Main Value: + * Number of Line: 9 + - 1 x0: 0 mm + - 2 y0: 0 mm + - 3 z0: 6 nm + - 4 halfopenanglemin: 0 deg + - 5 halfopenanglemax: 180 deg + - 6 sigmax: 2.12 mm + - 7 sigmay: 2.12 mm + - 8 events: 1 + - 9 eventfile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + x0 (mm): 0.0000 + y0 (mm): 0.0000 + z0 (mm): 0.0000 + SigmaX (mm): 2.1200 + SigmaY (mm): 2.1200 + Events: 1 + EventFile: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt + HalfOpenAngleMin (deg): 0.0000 + HalfOpenAngleMax (deg): 180.0000 +Event file found: /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt [0m + [1;31m ******* Event: 13997 | Progress: 1.0% | Rate: 496.3 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 46791 | Progress: 4.0% | Rate: 762.2 evt/s | Remain: 20min -------[0m [1;31m ------- Event: 136861 | Progress: 13.0% | Rate: 913.2 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 112783 | Progress: 11.0% | Rate: 897.1 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 80310 | Progress: 8.0% | Rate: 847.7 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 14440 | Progress: 1.0% | Rate: 494.4 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 47354 | Progress: 4.0% | Rate: 759.0 evt/s | Remain: 20min *******[0m [1;31m ******* Event: 137285 | Progress: 13.0% | Rate: 910.0 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 113504 | Progress: 11.0% | Rate: 895.7 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 81116 | Progress: 8.0% | Rate: 847.3 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 14989 | Progress: 1.0% | Rate: 496.2 evt/s | Remain: 33min *******[0m [1;31m ------- Event: 47875 | Progress: 4.0% | Rate: 755.1 evt/s | Remain: 21min -------[0m [1;31m ------- Event: 137806 | Progress: 13.0% | Rate: 907.4 evt/s | Remain: 15min -------[0m Warning : Region <NPSimulationProcess> does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. + +### === Deexcitation model UAtomDeexcitation is activated for 2 regions: + DefaultRegionForTheWorld 1 1 0 + NPSimulationProcess 1 1 0 +### === Auger cascade flag: 1 +### === Ignore cuts flag: 1 + +phot: for gamma SubType=12 BuildTable=0 + LambdaPrime table from 200 keV to 100 TeV in 174 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo + +compt: for gamma SubType=13 BuildTable=1 + Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1 + LambdaPrime table from 1 MeV to 100 TeV in 160 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo + KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo + +conv: for gamma SubType=14 BuildTable=1 + Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BetheHeitler5D : Emin= 0 eV Emax= 100 TeV ModifiedTsai + +Rayl: for gamma SubType=11 BuildTable=1 + Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0 + LambdaPrime table from 100 keV to 100 TeV in 180 bins + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator + +msc: for e- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for e-, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for e+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV + StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +eIoni: for e+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + PenIoni : Emin= 0 eV Emax= 100 keV + MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI + +eBrem: for e+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS + eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS + +ePairProd: for e+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 25x1001; from 0.1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ePairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +annihil: for e+, integral:1 SubType=5 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eplus2gg : Emin= 0 eV Emax= 100 TeV + +CoulombScat: for e+, integral:1 SubType=1 BuildTable=1 + Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 100 MeV Emax= 100 TeV + +msc: for proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +nuclearStopping: for proton SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for GenericIon SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for GenericIon SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI + +nuclearStopping: for GenericIon SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV +====================================================================== +====== Radioactive Decay Physics Parameters ======= +====================================================================== +Max life time 1.4427e+06 ps +Internal e- conversion flag 1 +Stored internal conversion coefficients 1 +Enable correlated gamma emission 0 +Max 2J for sampling of angular correlations 10 +Atomic de-excitation enabled 1 +Auger electron emission enabled 1 +Auger cascade enabled 1 +Check EM cuts disabled for atomic de-excitation 1 +Use Bearden atomic level energies 0 +====================================================================== + +msc: for alpha SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +ionIoni: for alpha SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI + BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI + +nuclearStopping: for alpha SubType=8 BuildTable=0 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV + +msc: for anti_proton SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for anti_proton SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI + BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI + +hBrems: for anti_proton SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for anti_proton SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 17x1001; from 7.50618 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for kaon- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for kaon- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI + BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI + +hBrems: for kaon- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for kaon- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 18x1001; from 3.94942 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of kaon+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for mu- SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +muIoni: for mu- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI + BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI + MuBetheBloch : Emin= 1 GeV Emax= 100 TeV + +muBrems: for mu- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + MuBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +muPairProd: for mu- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 21x1001; from 1 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + muPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of mu+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi+ SubType= 10 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi+ SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + Bragg : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi+ SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi+ SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1 + Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1 + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV + +msc: for pi- SubType= 10 + ===== EM models for [1;31m ------- Event: 114436 | Progress: 11.0% | Rate: 896.0 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 81936 | Progress: 8.0% | Rate: 847.0 evt/s | Remain: 18min *******[0m the G4Region DefaultRegionForTheWorld ====== + WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV + StepLim=Minimal Rfact=0.2 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1 + +hIoni: for pi- SubType=2 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + StepFunction=(0.1, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI + BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI + +hBrems: for pi- SubType=3 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hBrem : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +hPairProd: for pi- SubType=4 + dE/dx and range tables from 100 eV to 100 TeV in 240 bins + Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1 + Sampling table 20x1001; from 1.11656 GeV to 100 TeV + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi + +CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 + Used Lambda table of pi+ + ThetaMin(p) < Theta(degree) < 180; pLimit(GeV^1)= 0.139531 + ===== EM models for the G4Region DefaultRegionForTheWorld ====== + eCoulombScattering : Emin= 0 eV Emax= 100 TeV +Starting run 1 [1;31m ******* Event: 48358 | Progress: 4.0% | Rate: 750.9 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 15519 | Progress: 1.0% | Rate: 496.7 evt/s | Remain: 33min -------[0m [1;31m ******* Event: 138244 | Progress: 13.0% | Rate: 904.3 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 115097 | Progress: 11.0% | Rate: 894.1 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 82542 | Progress: 8.0% | Rate: 844.5 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 493 | Progress: 0.0% | Rate: 240.1 evt/s | Remain: 69min *******[0m [1;31m ------- Event: 48798 | Progress: 4.0% | Rate: 746.1 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 16050 | Progress: 1.0% | Rate: 497.7 evt/s | Remain: 32min *******[0m [1;31m ------- Event: 138796 | Progress: 13.0% | Rate: 902.0 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 115612 | Progress: 11.0% | Rate: 891.0 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 83061 | Progress: 8.0% | Rate: 840.9 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 49235 | Progress: 4.0% | Rate: 741.4 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 942 | Progress: 0.0% | Rate: 309.5 evt/s | Remain: 53min -------[0m [1;31m ------- Event: 16550 | Progress: 1.0% | Rate: 497.8 evt/s | Remain: 32min -------[0m [1;31m ******* Event: 139415 | Progress: 13.0% | Rate: 900.2 evt/s | Remain: 15min *******[0m [1;31m ******* Event: 116030 | Progress: 11.0% | Rate: 887.3 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 83512 | Progress: 8.0% | Rate: 837.0 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 49938 | Progress: 4.0% | Rate: 740.8 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 1683 | Progress: 0.0% | Rate: 416.9 evt/s | Remain: 39min *******[0m [1;31m ******* Event: 17086 | Progress: 1.0% | Rate: 498.9 evt/s | Remain: 32min *******[0m [1;31m ------- Event: 139935 | Progress: 13.0% | Rate: 897.7 evt/s | Remain: 15min -------[0m [1;31m ------- Event: 116433 | Progress: 11.0% | Rate: 883.5 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 84041 | Progress: 8.0% | Rate: 833.9 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 50420 | Progress: 5.0% | Rate: 737.0 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 2129 | Progress: 0.0% | Rate: 422.5 evt/s | Remain: 39min -------[0m [1;31m ------- Event: 17604 | Progress: 1.0% | Rate: 499.4 evt/s | Remain: 32min -------[0m [1;31m ******* Event: 140456 | Progress: 14.0% | Rate: 895.3 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 116964 | Progress: 11.0% | Rate: 880.8 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 84569 | Progress: 8.0% | Rate: 830.9 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 50971 | Progress: 5.0% | Rate: 734.3 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 2935 | Progress: 0.0% | Rate: 486.3 evt/s | Remain: 34min *******[0m [1;31m ******* Event: 18098 | Progress: 1.0% | Rate: 499.2 evt/s | Remain: 32min *******[0m [1;31m ------- Event: 141070 | Progress: 14.0% | Rate: 893.5 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 117438 | Progress: 11.0% | Rate: 877.7 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 85098 | Progress: 8.0% | Rate: 827.9 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 51393 | Progress: 5.0% | Rate: 729.8 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 3621 | Progress: 0.0% | Rate: 514.8 evt/s | Remain: 32min -------[0m [1;31m ------- Event: 18571 | Progress: 1.0% | Rate: 498.5 evt/s | Remain: 32min -------[0m [1;31m ******* Event: 141689 | Progress: 14.0% | Rate: 891.7 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 117838 | Progress: 11.0% | Rate: 874.2 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 85612 | Progress: 8.0% | Rate: 824.7 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 51919 | Progress: 5.0% | Rate: 727.0 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 4419 | Progress: 0.0% | Rate: 550.0 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 19081 | Progress: 1.0% | Rate: 498.8 evt/s | Remain: 32min *******[0m [1;31m ------- Event: 142234 | Progress: 14.0% | Rate: 889.3 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 118506 | Progress: 11.0% | Rate: 872.5 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 86183 | Progress: 8.0% | Rate: 822.3 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 52400 | Progress: 5.0% | Rate: 723.5 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 19821 | Progress: 1.0% | Rate: 505.0 evt/s | Remain: 32min -------[0m [1;31m ------- Event: 4969 | Progress: 0.0% | Rate: 547.1 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 142661 | Progress: 14.0% | Rate: 886.4 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 119329 | Progress: 11.0% | Rate: 872.1 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 86685 | Progress: 8.0% | Rate: 819.2 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 52932 | Progress: 5.0% | Rate: 720.9 evt/s | Remain: 21min -------[0m [1;31m ******* Event: 20540 | Progress: 2.0% | Rate: 509.6 evt/s | Remain: 32min *******[0m [1;31m ******* Event: 5404 | Progress: 0.0% | Rate: 532.1 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 143074 | Progress: 14.0% | Rate: 883.5 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 120129 | Progress: 12.0% | Rate: 871.6 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 87165 | Progress: 8.0% | Rate: 816.0 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 53472 | Progress: 5.0% | Rate: 718.5 evt/s | Remain: 21min *******[0m [1;31m ------- Event: 21295 | Progress: 2.0% | Rate: 515.6 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 5948 | Progress: 0.0% | Rate: 533.0 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 143728 | Progress: 14.0% | Rate: 882.0 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 87630 | Progress: 8.0% | Rate: 812.8 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 120603 | Progress: 12.0% | Rate: 868.5 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 53891 | Progress: 5.0% | Rate: 714.5 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 22108 | Progress: 2.0% | Rate: 522.6 evt/s | Remain: 31min *******[0m [1;31m ******* Event: 6474 | Progress: 0.0% | Rate: 532.4 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 144443 | Progress: 14.0% | Rate: 881.0 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 121027 | Progress: 12.0% | Rate: 865.3 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 88126 | Progress: 8.0% | Rate: 809.7 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 54365 | Progress: 5.0% | Rate: 711.3 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 22949 | Progress: 2.0% | Rate: 529.9 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 6989 | Progress: 0.0% | Rate: 530.8 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 145141 | Progress: 14.0% | Rate: 879.8 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 121526 | Progress: 12.0% | Rate: 862.7 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 88648 | Progress: 8.0% | Rate: 806.9 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 54899 | Progress: 5.0% | Rate: 709.0 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 23754 | Progress: 2.0% | Rate: 536.1 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 7541 | Progress: 0.0% | Rate: 532.3 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 145850 | Progress: 14.0% | Rate: 878.8 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 122180 | Progress: 12.0% | Rate: 861.2 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 89165 | Progress: 8.0% | Rate: 804.3 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 55428 | Progress: 5.0% | Rate: 706.7 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 24295 | Progress: 2.0% | Rate: 536.2 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 8060 | Progress: 0.0% | Rate: 531.3 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 146475 | Progress: 14.0% | Rate: 877.3 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 122604 | Progress: 12.0% | Rate: 858.1 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 89583 | Progress: 8.0% | Rate: 800.8 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 55834 | Progress: 5.0% | Rate: 702.9 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 25101 | Progress: 2.0% | Rate: 542.1 evt/s | Remain: 29min *******[0m [1;31m ******* Event: 8611 | Progress: 0.0% | Rate: 532.3 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 147018 | Progress: 14.0% | Rate: 875.3 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 122962 | Progress: 12.0% | Rate: 854.6 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 90064 | Progress: 9.0% | Rate: 797.9 evt/s | Remain: 19min *******[0m [1;31m ******* Event: 56307 | Progress: 5.0% | Rate: 700.0 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 25648 | Progress: 2.0% | Rate: 542.2 evt/s | Remain: 29min -------[0m [1;31m ------- Event: 9007 | Progress: 0.0% | Rate: 524.2 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 147470 | Progress: 14.0% | Rate: 872.7 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 90524 | Progress: 9.0% | Rate: 794.9 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 123394 | Progress: 12.0% | Rate: 851.4 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 56735 | Progress: 5.0% | Rate: 696.6 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 26225 | Progress: 2.0% | Rate: 542.8 evt/s | Remain: 29min *******[0m [1;31m ******* Event: 9473 | Progress: 0.0% | Rate: 521.0 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 147992 | Progress: 14.0% | Rate: 870.7 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 123860 | Progress: 12.0% | Rate: 848.7 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 91165 | Progress: 9.0% | Rate: 793.2 evt/s | Remain: 19min *******[0m [1;31m ******* Event: 57242 | Progress: 5.0% | Rate: 694.3 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 26797 | Progress: 2.0% | Rate: 543.4 evt/s | Remain: 29min -------[0m [1;31m ------- Event: 10031 | Progress: 1.0% | Rate: 522.9 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 148445 | Progress: 14.0% | Rate: 868.2 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 124445 | Progress: 12.0% | Rate: 846.9 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 91686 | Progress: 9.0% | Rate: 790.9 evt/s | Remain: 19min -------[0m [1;31m ------- Event: 57804 | Progress: 5.0% | Rate: 692.4 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 27264 | Progress: 2.0% | Rate: 541.8 evt/s | Remain: 29min *******[0m [1;31m ******* Event: 10529 | Progress: 1.0% | Rate: 521.6 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 148908 | Progress: 14.0% | Rate: 865.8 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 124927 | Progress: 12.0% | Rate: 844.5 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 92151 | Progress: 9.0% | Rate: 788.0 evt/s | Remain: 19min *******[0m [1;31m ******* Event: 58302 | Progress: 5.0% | Rate: 690.1 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 27743 | Progress: 2.0% | Rate: 540.6 evt/s | Remain: 29min -------[0m [1;31m ------- Event: 10960 | Progress: 1.0% | Rate: 516.7 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 149417 | Progress: 14.0% | Rate: 863.7 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 92741 | Progress: 9.0% | Rate: 786.3 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 125440 | Progress: 12.0% | Rate: 842.1 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 58803 | Progress: 5.0% | Rate: 687.8 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 11450 | Progress: 1.0% | Rate: 515.4 evt/s | Remain: 31min *******[0m [1;31m ******* Event: 28288 | Progress: 2.0% | Rate: 540.6 evt/s | Remain: 29min *******[0m [1;31m ------- Event: 149839 | Progress: 14.0% | Rate: 861.2 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 93282 | Progress: 9.0% | Rate: 784.1 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 125970 | Progress: 12.0% | Rate: 839.9 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 59228 | Progress: 5.0% | Rate: 684.8 evt/s | Remain: 22min *******[0m [1;31m ------- Event: 28742 | Progress: 2.0% | Rate: 539.0 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 12050 | Progress: 1.0% | Rate: 519.1 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 150331 | Progress: 15.0% | Rate: 859.1 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 93874 | Progress: 9.0% | Rate: 782.3 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 126429 | Progress: 12.0% | Rate: 837.4 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 59758 | Progress: 5.0% | Rate: 682.8 evt/s | Remain: 22min -------[0m [1;31m ******* Event: 29154 | Progress: 2.0% | Rate: 536.6 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 12419 | Progress: 1.0% | Rate: 512.8 evt/s | Remain: 32min *******[0m [1;31m ------- Event: 150888 | Progress: 15.0% | Rate: 857.3 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 94397 | Progress: 9.0% | Rate: 780.2 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 126903 | Progress: 12.0% | Rate: 834.9 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 60258 | Progress: 6.0% | Rate: 680.7 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 29682 | Progress: 2.0% | Rate: 536.4 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 13126 | Progress: 1.0% | Rate: 520.5 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 151354 | Progress: 15.0% | Rate: 855.1 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 94661 | Progress: 9.0% | Rate: 775.9 evt/s | Remain: 19min -------[0m [1;31m ------- Event: 60814 | Progress: 6.0% | Rate: 679.3 evt/s | Remain: 23min -------[0m [1;31m ******* Event: 127360 | Progress: 12.0% | Rate: 832.4 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 30150 | Progress: 3.0% | Rate: 535.2 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 13654 | Progress: 1.0% | Rate: 520.1 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 151749 | Progress: 15.0% | Rate: 852.5 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 95258 | Progress: 9.0% | Rate: 774.4 evt/s | Remain: 19min *******[0m [1;31m ******* Event: 61244 | Progress: 6.0% | Rate: 676.5 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 127859 | Progress: 12.0% | Rate: 830.2 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 30660 | Progress: 3.0% | Rate: 534.8 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 14243 | Progress: 1.0% | Rate: 522.6 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 152209 | Progress: 15.0% | Rate: 850.3 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 95720 | Progress: 9.0% | Rate: 771.9 evt/s | Remain: 19min -------[0m [1;31m ------- Event: 61732 | Progress: 6.0% | Rate: 674.4 evt/s | Remain: 23min -------[0m [1;31m ******* Event: 128404 | Progress: 12.0% | Rate: 828.3 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 31291 | Progress: 3.0% | Rate: 536.4 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 15038 | Progress: 1.0% | Rate: 532.4 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 152724 | Progress: 15.0% | Rate: 848.4 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 128915 | Progress: 12.0% | Rate: 826.3 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 15551 | Progress: 1.0% | Rate: 531.7 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 62227 | Progress: 6.0% | Rate: 672.5 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 96178 | Progress: 9.0% | Rate: 769.3 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 31713 | Progress: 3.0% | Rate: 534.5 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 153197 | Progress: 15.0% | Rate: 846.3 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 129484 | Progress: 12.0% | Rate: 824.4 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 62621 | Progress: 6.0% | Rate: 669.5 evt/s | Remain: 23min -------[0m [1;31m ******* Event: 16050 | Progress: 1.0% | Rate: 530.4 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 96713 | Progress: 9.0% | Rate: 767.5 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 32220 | Progress: 3.0% | Rate: 534.0 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 153723 | Progress: 15.0% | Rate: 844.5 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 63157 | Progress: 6.0% | Rate: 668.0 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 129968 | Progress: 12.0% | Rate: 822.2 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 97258 | Progress: 9.0% | Rate: 765.7 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 16526 | Progress: 1.0% | Rate: 528.6 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 32677 | Progress: 3.0% | Rate: 532.7 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 154282 | Progress: 15.0% | Rate: 843.0 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 63607 | Progress: 6.0% | Rate: 665.7 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 97783 | Progress: 9.0% | Rate: 763.8 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 130572 | Progress: 13.0% | Rate: 820.8 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 33137 | Progress: 3.0% | Rate: 531.2 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 16974 | Progress: 1.0% | Rate: 526.1 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 154706 | Progress: 15.0% | Rate: 840.7 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 64095 | Progress: 6.0% | Rate: 663.9 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 131057 | Progress: 13.0% | Rate: 818.7 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 98300 | Progress: 9.0% | Rate: 761.8 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 17595 | Progress: 1.0% | Rate: 528.9 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 33646 | Progress: 3.0% | Rate: 530.9 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 155162 | Progress: 15.0% | Rate: 838.6 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 64569 | Progress: 6.0% | Rate: 661.9 evt/s | Remain: 23min -------[0m [1;31m ******* Event: 131631 | Progress: 13.0% | Rate: 817.2 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 98759 | Progress: 9.0% | Rate: 759.5 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 34079 | Progress: 3.0% | Rate: 529.3 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 18149 | Progress: 1.0% | Rate: 529.5 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 155621 | Progress: 15.0% | Rate: 836.2 evt/s | Remain: 16min -------[0m [1;31m ------- Event: 132199 | Progress: 13.0% | Rate: 815.6 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 65072 | Progress: 6.0% | Rate: 660.3 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 99230 | Progress: 9.0% | Rate: 757.3 evt/s | Remain: 19min *******[0m [1;31m ------- Event: 34513 | Progress: 3.0% | Rate: 527.9 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 18631 | Progress: 1.0% | Rate: 528.2 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 156093 | Progress: 15.0% | Rate: 834.2 evt/s | Remain: 16min *******[0m [1;31m ******* Event: 132714 | Progress: 13.0% | Rate: 813.7 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 65707 | Progress: 6.0% | Rate: 660.0 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 99733 | Progress: 9.0% | Rate: 755.3 evt/s | Remain: 19min -------[0m [1;31m ******* Event: 19178 | Progress: 1.0% | Rate: 528.7 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 35027 | Progress: 3.0% | Rate: 527.5 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 156650 | Progress: 15.0% | Rate: 832.7 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 66121 | Progress: 6.0% | Rate: 657.4 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 133122 | Progress: 13.0% | Rate: 811.1 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 19758 | Progress: 1.0% | Rate: 530.1 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 35413 | Progress: 3.0% | Rate: 525.3 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 157083 | Progress: 15.0% | Rate: 830.6 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 66556 | Progress: 6.0% | Rate: 655.2 evt/s | Remain: 23min -------[0m [1;31m ******* Event: 100082 | Progress: 10.0% | Rate: 752.2 evt/s | Remain: 19min *******[0m [1;31m ******* Event: 133620 | Progress: 13.0% | Rate: 809.1 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 35926 | Progress: 3.0% | Rate: 525.1 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 20280 | Progress: 2.0% | Rate: 529.9 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 157622 | Progress: 15.0% | Rate: 829.0 evt/s | Remain: 16min -------[0m [1;31m ******* Event: 66997 | Progress: 6.0% | Rate: 653.1 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 100665 | Progress: 10.0% | Rate: 751.0 evt/s | Remain: 19min -------[0m [1;31m ------- Event: 134126 | Progress: 13.0% | Rate: 807.2 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 20857 | Progress: 2.0% | Rate: 531.1 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 36434 | Progress: 3.0% | Rate: 524.8 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 157949 | Progress: 15.0% | Rate: 826.4 evt/s | Remain: 16min *******[0m [1;31m ------- Event: 67535 | Progress: 6.0% | Rate: 651.9 evt/s | Remain: 23min -------[0m [1;31m ******* Event: 101231 | Progress: 10.0% | Rate: 749.6 evt/s | Remain: 19min *******[0m [1;31m ******* Event: 134583 | Progress: 13.0% | Rate: 805.0 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 21400 | Progress: 2.0% | Rate: 531.4 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 36984 | Progress: 3.0% | Rate: 525.2 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 158404 | Progress: 15.0% | Rate: 824.4 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 68046 | Progress: 6.0% | Rate: 650.6 evt/s | Remain: 23min *******[0m [1;31m ------- Event: 21812 | Progress: 2.0% | Rate: 528.4 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 135179 | Progress: 13.0% | Rate: 803.8 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 37518 | Progress: 3.0% | Rate: 525.3 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 101769 | Progress: 10.0% | Rate: 748.0 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 158933 | Progress: 15.0% | Rate: 822.8 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 135776 | Progress: 13.0% | Rate: 802.5 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 102286 | Progress: 10.0% | Rate: 746.3 evt/s | Remain: 20min *******[0m [1;31m ******* Event: 38076 | Progress: 3.0% | Rate: 525.8 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 22350 | Progress: 2.0% | Rate: 528.7 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 68597 | Progress: 6.0% | Rate: 649.6 evt/s | Remain: 23min -------[0m [1;31m ------- Event: 159424 | Progress: 15.0% | Rate: 821.1 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 102825 | Progress: 10.0% | Rate: 744.8 evt/s | Remain: 20min -------[0m [1;31m ------- Event: 38598 | Progress: 3.0% | Rate: 525.7 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 22876 | Progress: 2.0% | Rate: 528.6 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 136235 | Progress: 13.0% | Rate: 800.5 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 159845 | Progress: 15.0% | Rate: 819.0 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 69018 | Progress: 6.0% | Rate: 647.5 evt/s | Remain: 23min *******[0m [1;31m ******* Event: 103344 | Progress: 10.0% | Rate: 743.1 evt/s | Remain: 20min *******[0m [1;31m ******* Event: 23434 | Progress: 2.0% | Rate: 529.2 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 39156 | Progress: 3.0% | Rate: 526.1 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 136718 | Progress: 13.0% | Rate: 798.6 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 160162 | Progress: 16.0% | Rate: 816.5 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 69489 | Progress: 6.0% | Rate: 645.8 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 103838 | Progress: 10.0% | Rate: 741.3 evt/s | Remain: 20min -------[0m [1;31m ------- Event: 137216 | Progress: 13.0% | Rate: 796.9 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 23879 | Progress: 2.0% | Rate: 527.3 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 160695 | Progress: 16.0% | Rate: 815.0 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 39566 | Progress: 3.0% | Rate: 524.0 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 70027 | Progress: 7.0% | Rate: 644.8 evt/s | Remain: 24min *******[0m [1;31m ******* Event: 104357 | Progress: 10.0% | Rate: 739.7 evt/s | Remain: 20min *******[0m [1;31m ******* Event: 137641 | Progress: 13.0% | Rate: 794.7 evt/s | Remain: 18min *******[0m [1;31m ------- Event: 161148 | Progress: 16.0% | Rate: 813.2 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 24286 | Progress: 2.0% | Rate: 524.7 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 70478 | Progress: 7.0% | Rate: 643.0 evt/s | Remain: 24min -------[0m [1;31m ******* Event: 40036 | Progress: 4.0% | Rate: 523.3 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 104825 | Progress: 10.0% | Rate: 737.8 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 161719 | Progress: 16.0% | Rate: 811.9 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 138167 | Progress: 13.0% | Rate: 793.1 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 70925 | Progress: 7.0% | Rate: 641.3 evt/s | Remain: 24min *******[0m [1;31m ------- Event: 24788 | Progress: 2.0% | Rate: 524.2 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 40517 | Progress: 4.0% | Rate: 522.8 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 105300 | Progress: 10.0% | Rate: 735.9 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 71457 | Progress: 7.0% | Rate: 640.3 evt/s | Remain: 24min -------[0m [1;31m ******* Event: 138558 | Progress: 13.0% | Rate: 790.8 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 25130 | Progress: 2.0% | Rate: 520.4 evt/s | Remain: 31min *******[0m [1;31m ******* Event: 40897 | Progress: 4.0% | Rate: 520.9 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 162260 | Progress: 16.0% | Rate: 810.5 evt/s | Remain: 17min -------[0m [1;31m ------- Event: 105813 | Progress: 10.0% | Rate: 734.4 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 71925 | Progress: 7.0% | Rate: 638.7 evt/s | Remain: 24min *******[0m [1;31m ------- Event: 25669 | Progress: 2.0% | Rate: 520.8 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 139075 | Progress: 13.0% | Rate: 789.3 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 41382 | Progress: 4.0% | Rate: 520.5 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 162769 | Progress: 16.0% | Rate: 808.9 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 106333 | Progress: 10.0% | Rate: 732.9 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 72429 | Progress: 7.0% | Rate: 637.5 evt/s | Remain: 24min -------[0m [1;31m ******* Event: 26127 | Progress: 2.0% | Rate: 519.5 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 163205 | Progress: 16.0% | Rate: 807.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 139393 | Progress: 13.0% | Rate: 786.4 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 41865 | Progress: 4.0% | Rate: 519.9 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 106864 | Progress: 10.0% | Rate: 731.5 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 72905 | Progress: 7.0% | Rate: 636.1 evt/s | Remain: 24min *******[0m [1;31m ******* Event: 163722 | Progress: 16.0% | Rate: 805.6 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 26515 | Progress: 2.0% | Rate: 516.9 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 139811 | Progress: 13.0% | Rate: 784.4 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 42389 | Progress: 4.0% | Rate: 519.9 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 107425 | Progress: 10.0% | Rate: 730.3 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 73274 | Progress: 7.0% | Rate: 633.8 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 164216 | Progress: 16.0% | Rate: 804.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 140266 | Progress: 14.0% | Rate: 782.5 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 27112 | Progress: 2.0% | Rate: 518.4 evt/s | Remain: 31min *******[0m [1;31m ******* Event: 42895 | Progress: 4.0% | Rate: 519.7 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 107923 | Progress: 10.0% | Rate: 728.7 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 73759 | Progress: 7.0% | Rate: 632.5 evt/s | Remain: 24min *******[0m [1;31m ******* Event: 164772 | Progress: 16.0% | Rate: 802.8 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 140736 | Progress: 14.0% | Rate: 780.6 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 27552 | Progress: 2.0% | Rate: 516.9 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 43399 | Progress: 4.0% | Rate: 519.4 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 108402 | Progress: 10.0% | Rate: 727.0 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 74193 | Progress: 7.0% | Rate: 630.8 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 165158 | Progress: 16.0% | Rate: 800.8 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 141291 | Progress: 14.0% | Rate: 779.3 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 28121 | Progress: 2.0% | Rate: 517.1 evt/s | Remain: 31min *******[0m [1;31m ******* Event: 43724 | Progress: 4.0% | Rate: 517.0 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 108819 | Progress: 10.0% | Rate: 725.0 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 74673 | Progress: 7.0% | Rate: 629.5 evt/s | Remain: 24min *******[0m [1;31m ------- Event: 141765 | Progress: 14.0% | Rate: 777.6 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 165620 | Progress: 16.0% | Rate: 799.1 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 28672 | Progress: 2.0% | Rate: 517.6 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 44209 | Progress: 4.0% | Rate: 516.4 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 109183 | Progress: 10.0% | Rate: 722.5 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 75125 | Progress: 7.0% | Rate: 628.0 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 166180 | Progress: 16.0% | Rate: 798.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 142286 | Progress: 14.0% | Rate: 776.2 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 29164 | Progress: 2.0% | Rate: 517.0 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 109756 | Progress: 10.0% | Rate: 721.6 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 44633 | Progress: 4.0% | Rate: 514.9 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 75569 | Progress: 7.0% | Rate: 626.5 evt/s | Remain: 24min *******[0m [1;31m ******* Event: 166702 | Progress: 16.0% | Rate: 796.7 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 142717 | Progress: 14.0% | Rate: 774.3 evt/s | Remain: 18min -------[0m [1;31m ------- Event: 29693 | Progress: 2.0% | Rate: 517.2 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 110328 | Progress: 11.0% | Rate: 720.6 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 45126 | Progress: 4.0% | Rate: 514.6 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 76037 | Progress: 7.0% | Rate: 625.1 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 167150 | Progress: 16.0% | Rate: 795.0 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 143322 | Progress: 14.0% | Rate: 773.4 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 30095 | Progress: 3.0% | Rate: 515.2 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 110883 | Progress: 11.0% | Rate: 719.4 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 45682 | Progress: 4.0% | Rate: 515.1 evt/s | Remain: 30min *******[0m [1;31m ******* Event: 76550 | Progress: 7.0% | Rate: 624.2 evt/s | Remain: 24min *******[0m [1;31m ------- Event: 143839 | Progress: 14.0% | Rate: 772.0 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 167581 | Progress: 16.0% | Rate: 793.2 evt/s | Remain: 17min *******[0m [1;31m ------- Event: 30717 | Progress: 3.0% | Rate: 516.9 evt/s | Remain: 31min -------[0m [1;31m ******* Event: 111249 | Progress: 11.0% | Rate: 717.1 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 77026 | Progress: 7.0% | Rate: 622.8 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 46255 | Progress: 4.0% | Rate: 515.6 evt/s | Remain: 30min -------[0m [1;31m ------- Event: 168041 | Progress: 16.0% | Rate: 791.6 evt/s | Remain: 17min -------[0m [1;31m ******* Event: 144333 | Progress: 14.0% | Rate: 770.5 evt/s | Remain: 18min *******[0m [1;31m ******* Event: 31286 | Progress: 3.0% | Rate: 517.7 evt/s | Remain: 31min *******[0m [1;31m ------- Event: 111810 | Progress: 11.0% | Rate: 716.1 evt/s | Remain: 20min -------[0m [1;31m ******* Event: 77483 | Progress: 7.0% | Rate: 621.5 evt/s | Remain: 24min *******[0m [1;31m ******* Event: 46810 | Progress: 4.0% | Rate: 516.0 evt/s | Remain: 30min *******[0m [1;31m ------- Event: 144764 | Progress: 14.0% | Rate: 768.6 evt/s | Remain: 18min -------[0m [1;31m ******* Event: 168483 | Progress: 16.0% | Rate: 790.0 evt/s | Remain: 17min *******[0m [1;31m ******* Event: 112418 | Progress: 11.0% | Rate: 715.4 evt/s | Remain: 20min *******[0m [1;31m ------- Event: 77938 | Progress: 7.0% | Rate: 619.5 evt/s | Remain: 24min -------[0m [1;31m ------- Event: 31853 | Progress: 3.0% | Rate: 517.1 evt/s | Remain: 31min -------[0m [1;31m ------- Event: 47349 | Progress: 4.0% | Rate: 513.1 evt/s | Remain: 30min -------[0m [1;31m ******* Event: 145303 | Progress: 14.0% | Rate: 765.9 evt/s | Remain: 18min *******[0m \ No newline at end of file diff --git a/Projects/SEASON/sources/Elements/224Ra.source b/Projects/SEASON/sources/Elements/224Ra.source new file mode 100644 index 0000000000000000000000000000000000000000..cd052fd0cb9d227417a06664a78619da5c47d6a8 --- /dev/null +++ b/Projects/SEASON/sources/Elements/224Ra.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 0 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= 224Ra + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha \ No newline at end of file diff --git a/Projects/SEASON/sources/Elements/225Pa.source b/Projects/SEASON/sources/Elements/225Pa.source new file mode 100644 index 0000000000000000000000000000000000000000..eea56435eb57c9fd7a0ecb70d23ce2f4aa965e4b --- /dev/null +++ b/Projects/SEASON/sources/Elements/225Pa.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 0 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= 225Pa + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha \ No newline at end of file diff --git a/Projects/SEASON/sources/Elements/225Th.source b/Projects/SEASON/sources/Elements/225Th.source new file mode 100644 index 0000000000000000000000000000000000000000..449cb49471c227ccef59764deb393186d57719a2 --- /dev/null +++ b/Projects/SEASON/sources/Elements/225Th.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 0 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= 225Th + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha \ No newline at end of file diff --git a/Projects/SEASON/sources/Elements/226Pa.source b/Projects/SEASON/sources/Elements/226Pa.source new file mode 100644 index 0000000000000000000000000000000000000000..295d6bbabcbb1b4a6d957ee2f2282f095540a046 --- /dev/null +++ b/Projects/SEASON/sources/Elements/226Pa.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 0 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= 226Pa + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha \ No newline at end of file diff --git a/Projects/SEASON/sources/Elements/226Th.source b/Projects/SEASON/sources/Elements/226Th.source new file mode 100644 index 0000000000000000000000000000000000000000..176f587157e3b51246517f2a58b5d20824b9b0ed --- /dev/null +++ b/Projects/SEASON/sources/Elements/226Th.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 0 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= 226Th + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha \ No newline at end of file diff --git a/Projects/SEASON/sources/Elements/239Pu.source b/Projects/SEASON/sources/Elements/239Pu.source new file mode 100644 index 0000000000000000000000000000000000000000..37c06c68762efc038e31859857e6ccb953bb8874 --- /dev/null +++ b/Projects/SEASON/sources/Elements/239Pu.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 180 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 1.63 mm + SigmaY= 1.63 mm + Particle= 239Pu + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha diff --git a/Projects/SEASON/sources/Elements/241Am.source b/Projects/SEASON/sources/Elements/241Am.source new file mode 100644 index 0000000000000000000000000000000000000000..bf2f1512d9fd2a627df413db65e8f07b050f6c32 --- /dev/null +++ b/Projects/SEASON/sources/Elements/241Am.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 180 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 1.63 mm + SigmaY= 1.63 mm + Particle= 241Am + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha diff --git a/Projects/SEASON/sources/Elements/244Cm.source b/Projects/SEASON/sources/Elements/244Cm.source new file mode 100644 index 0000000000000000000000000000000000000000..3255ec4e0b2c81ea537fcf3e4ff15642316b4893 --- /dev/null +++ b/Projects/SEASON/sources/Elements/244Cm.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 0 MeV + EnergyHigh= 0 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 180 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 1.63 mm + SigmaY= 1.63 mm + Particle= 244Cm + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha diff --git a/Projects/SEASON/sources/alpha.source b/Projects/SEASON/sources/alpha.source new file mode 100644 index 0000000000000000000000000000000000000000..38a52acf491d085b64d0638cdc6dcc00c7e34240 --- /dev/null +++ b/Projects/SEASON/sources/alpha.source @@ -0,0 +1,19 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Isotropic + EnergyLow= 8 MeV + EnergyHigh= 8 MeV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 180 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= alpha + ExcitationEnergy= 0 MeV + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha diff --git a/Projects/SEASON/sources/alpha_electron_cascade.txt b/Projects/SEASON/sources/alpha_electron_cascade.txt new file mode 100644 index 0000000000000000000000000000000000000000..284664bed4d653844ded8ee7181bdcee802e88a7 --- /dev/null +++ b/Projects/SEASON/sources/alpha_electron_cascade.txt @@ -0,0 +1,3 @@ +Multiplicity 2 +electron 0.05 0 +alpha 8 0 diff --git a/Projects/SEASON/sources/alpha_electron_cascade_5mm.source b/Projects/SEASON/sources/alpha_electron_cascade_5mm.source new file mode 100644 index 0000000000000000000000000000000000000000..78a30359f3e593d58e952829da0829d4817da5dd --- /dev/null +++ b/Projects/SEASON/sources/alpha_electron_cascade_5mm.source @@ -0,0 +1,18 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% 5 mm FWHM +% Position for 0.09 um (20 g/cm2) thick carbon foil +% Source 6 nm depth in foil +MultipleParticle + x0= 0 mm + y0= 0 mm + z0= 6 nm + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 180 deg + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Events= 1 + EventFile= /local/home/admin-local/nptool/Projects/SEASON/sources/alpha_electron_cascade.txt diff --git a/Projects/SEASON/sources/electron.source b/Projects/SEASON/sources/electron.source new file mode 100644 index 0000000000000000000000000000000000000000..5d2063acb09b6209bed7cf2e963fee377e281a9f --- /dev/null +++ b/Projects/SEASON/sources/electron.source @@ -0,0 +1,23 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%% An Isotropic Source to be used as EventGenerator %%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Energy are given in MeV , Position in mm % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% 5 mm FWHM +% Position for 0.09 um (20 ug/cm2) thick carbon foil +% Implantation at around 6nm + +Isotropic + EnergyLow= 100 keV + EnergyHigh= 100 keV + HalfOpenAngleMin= 0 deg + HalfOpenAngleMax= 180 deg + x0= 0 mm + y0= 0 mm + z0= 6 nm + SigmaX= 2.12 mm + SigmaY= 2.12 mm + Particle= electron + + +% Supported particle type: proton, neutron, deuton, triton, He3 , alpha , electron