diff --git a/NPLib/Detectors/PISTA/TPISTAPhysics.cxx b/NPLib/Detectors/PISTA/TPISTAPhysics.cxx index aed56416356ee6c5e6e50ff3c2f6966437401a84..7b995333795a6612423b032c74afe18c10de16df 100644 --- a/NPLib/Detectors/PISTA/TPISTAPhysics.cxx +++ b/NPLib/Detectors/PISTA/TPISTAPhysics.cxx @@ -409,7 +409,7 @@ void TPISTAPhysics::PreTreat() { unsigned int sizeDE = m_EventData->GetPISTADEMult(); unsigned int sizeDE_back = m_EventData->GetPISTADEBackMult(); for (UShort_t i = 0; i < sizeDE ; ++i) { - if (IsValidChannel(0,m_EventData->GetPISTA_DE_DetectorNbr(i),m_EventData->GetPISTA_DE_StripNbr(i)) && m_EventData->GetPISTA_DE_StripEnergy(i)<4094) { + if (IsValidChannel(0,m_EventData->GetPISTA_DE_DetectorNbr(i),m_EventData->GetPISTA_DE_StripNbr(i)) && m_EventData->GetPISTA_DE_StripEnergy(i)<4095) { int DetNbr = m_EventData->GetPISTA_DE_DetectorNbr(i); int StripNbr = m_EventData->GetPISTA_DE_StripNbr(i); double StripE = m_EventData->GetPISTA_DE_StripEnergy(i); @@ -442,7 +442,7 @@ void TPISTAPhysics::PreTreat() { unsigned int sizeE = m_EventData->GetPISTAEMult(); unsigned int sizeE_back = m_EventData->GetPISTAEBackMult(); for (UShort_t i = 0; i < sizeE ; ++i) { - if (IsValidChannel(1,m_EventData->GetPISTA_E_DetectorNbr(i),m_EventData->GetPISTA_E_StripNbr(i)) && m_EventData->GetPISTA_E_StripEnergy(i)<4094) { + if (IsValidChannel(1,m_EventData->GetPISTA_E_DetectorNbr(i),m_EventData->GetPISTA_E_StripNbr(i)) && m_EventData->GetPISTA_E_StripEnergy(i)<4095) { int DetNbr = m_EventData->GetPISTA_E_DetectorNbr(i); int StripNbr = m_EventData->GetPISTA_E_StripNbr(i); double StripE = m_EventData->GetPISTA_E_StripEnergy(i); 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..c0c6d19e7e06505d9cbae2e23107e1830f384b7e --- /dev/null +++ b/NPLib/Detectors/SEASON/TSEASONPhysics.cxx @@ -0,0 +1,479 @@ +/***************************************************************************** + * 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 <cmath> +#include <iostream> +#include <limits> +#include <sstream> +#include <stdlib.h> +using namespace std; + +// NPL +#include "NPDetectorFactory.h" +#include "NPOptionManager.h" +#include "RootInput.h" +#include "RootOutput.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/NPSimulation/Detectors/PISTA/PISTA.cc b/NPSimulation/Detectors/PISTA/PISTA.cc index 0407fa38f37aa10910780654f92cabf565afa00b..4e985ebe1cc97fd03dccb86c6a7123e03c7e7cd9 100644 --- a/NPSimulation/Detectors/PISTA/PISTA.cc +++ b/NPSimulation/Detectors/PISTA/PISTA.cc @@ -69,7 +69,7 @@ namespace PISTA_NS{ const double TrapezoidHeight = 57.7*mm; const double TrapezoidLength = 1*cm; const double FirstStageThickness = 100*um; - const double SecondStageThickness = 1.0*mm; + const double SecondStageThickness = 1.5*mm; const double DistanceBetweenSi = 4*mm; const double FirstStageNbrOfStrips = 91; const double SecondStageNbrOfStrips = 57; 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..4fc96a0e1cd86757834a8d30d5288a705e2ee983 --- /dev/null +++ b/NPSimulation/Detectors/SEASON/SEASON.cc @@ -0,0 +1,753 @@ +/***************************************************************************** + * 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 <cmath> +#include <limits> +#include <sstream> +// G4 Geometry object +#include "G4Box.hh" +#include "G4MultiUnion.hh" +#include "G4SubtractionSolid.hh" +#include "G4Trd.hh" +#include "G4Tubs.hh" +#include "G4UnionSolid.hh" +#include "G4VSolid.hh" + +// G4 sensitive +#include "G4MultiFunctionalDetector.hh" +#include "G4SDManager.hh" + +// G4 various object +#include "G4Colour.hh" +#include "G4Material.hh" +#include "G4PVPlacement.hh" +#include "G4Transform3D.hh" +#include "G4VisAttributes.hh" +#include "Randomize.hh" + +// NPTool header +#include "DSSDScorers.hh" +#include "InteractionScorers.hh" +#include "MaterialManager.hh" +#include "NPOptionManager.h" +#include "NPSDetectorFactory.hh" +#include "NPSHitsMap.hh" +#include "RootOutput.h" +#include "SEASON.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"); +} // namespace SEASON_NS + +//....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::GetInvisible()); + m_VisGrid = new G4VisAttributes(G4VisAttributes::GetInvisible()); + 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/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 diff --git a/Projects/e850/Analysis.cxx b/Projects/e850/Analysis.cxx index da4c37aa1e5b6b198917f5bf22dd735a07ef6c09..ab460e5fdec3bb80c8239f4b633f9dac051f8b17 100644 --- a/Projects/e850/Analysis.cxx +++ b/Projects/e850/Analysis.cxx @@ -135,7 +135,6 @@ void Analysis::TreatEvent(){ double Energy = 0; int strip_DE = 0; int strip_E = 0; - int DetectorNumber = 0; if(PISTA->EventMultiplicity==1){ DeltaE = PISTA->DE[0]; Eres = PISTA->back_E[0]; @@ -143,14 +142,14 @@ void Analysis::TreatEvent(){ strip_DE = PISTA->DE_StripNbr[0]; strip_E = PISTA->E_StripNbr[0]; - DetectorNumber = PISTA->DetectorNumber[0]; + Telescope = PISTA->DetectorNumber[0]; } else if(PISTA->EventMultiplicity==2 && abs(PISTA->DE_StripNbr[0]-PISTA->DE_StripNbr[1])==1){ DeltaE = PISTA->DE[0] + PISTA->DE[1]; Eres = PISTA->back_E[0]; Energy = DeltaE + Eres; - DetectorNumber = PISTA->DetectorNumber[0]; + Telescope = PISTA->DetectorNumber[0]; if(PISTA->DE[0]>PISTA->DE[1]) strip_DE = PISTA->DE_StripNbr[0]; else @@ -159,7 +158,7 @@ void Analysis::TreatEvent(){ strip_E = PISTA->E_StripNbr[0]; } if(strip_DE>0 && strip_DE<92 && strip_E>0 && strip_E<58){ - TVector3 PISTA_pos = PISTA->GetPositionOfInteraction(DetectorNumber, strip_E, strip_DE); + TVector3 PISTA_pos = PISTA->GetPositionOfInteraction(Telescope, strip_E, strip_DE); TVector3 HitDirection = PISTA_pos - PositionOnTarget; PhiLab = PISTA_pos.Phi(); Xcalc = PISTA_pos.X(); @@ -197,6 +196,7 @@ void Analysis::InitOutputBranch(){ RootOutput::getInstance()->GetTree()->Branch("DeltaE",&DeltaE,"DeltaE/D"); RootOutput::getInstance()->GetTree()->Branch("DeltaEcorr",&DeltaEcorr,"DeltaEcorr/D"); RootOutput::getInstance()->GetTree()->Branch("Eres",&Eres,"Eres/D"); + RootOutput::getInstance()->GetTree()->Branch("Telescope",&Telescope,"Telescope/I"); RootOutput::getInstance()->GetTree()->Branch("PID",&PID,"PID/D"); RootOutput::getInstance()->GetTree()->Branch("Elab",&Elab,"Elab/D"); RootOutput::getInstance()->GetTree()->Branch("ThetaLab",&ThetaLab,"ThetaLab/D"); @@ -356,7 +356,7 @@ void Analysis::ReInitValue(){ Ycalc = -1000; Zcalc = -1000; PID = -1000; - + Telescope = -1; Chio_DE = -1000; Chio_E = -1000; diff --git a/Projects/e850/Analysis.h b/Projects/e850/Analysis.h index a76b3867812d9c8a9225b8b38525c22970cbe3ea..9721e8c8d9fe4fc31d2b456aafe72e1294ca9e68 100644 --- a/Projects/e850/Analysis.h +++ b/Projects/e850/Analysis.h @@ -57,6 +57,7 @@ class Analysis: public NPL::VAnalysis{ double YTarget; double ZTarget; double Elab; + int Telescope; double DeltaE; double DeltaEcorr; double Eres; diff --git a/Projects/e850/Calibration/Energy/Calibrator.h b/Projects/e850/Calibration/Energy/Calib_DE/Calibrator.h similarity index 100% rename from Projects/e850/Calibration/Energy/Calibrator.h rename to Projects/e850/Calibration/Energy/Calib_DE/Calibrator.h diff --git a/Projects/e850/Calibration/Energy/FillHisto.C b/Projects/e850/Calibration/Energy/Calib_DE/FillHisto.C similarity index 100% rename from Projects/e850/Calibration/Energy/FillHisto.C rename to Projects/e850/Calibration/Energy/Calib_DE/FillHisto.C diff --git a/Projects/e850/Calibration/Energy/FillHistoEnergy.C b/Projects/e850/Calibration/Energy/Calib_DE/FillHistoEnergy.C similarity index 100% rename from Projects/e850/Calibration/Energy/FillHistoEnergy.C rename to Projects/e850/Calibration/Energy/Calib_DE/FillHistoEnergy.C diff --git a/Projects/e850/Calibration/Energy/FitAlpha.C b/Projects/e850/Calibration/Energy/Calib_DE/FitAlpha.C similarity index 87% rename from Projects/e850/Calibration/Energy/FitAlpha.C rename to Projects/e850/Calibration/Energy/Calib_DE/FitAlpha.C index 208a887bc0e6434cf107eb33f9dcee9e4c2dd2a8..cededa7b5c32e21030f04b41d442acfde0fcb8e5 100644 --- a/Projects/e850/Calibration/Energy/FitAlpha.C +++ b/Projects/e850/Calibration/Energy/Calib_DE/FitAlpha.C @@ -138,7 +138,7 @@ Double_t Calibration(TH1F* hist, Double_t* mean, Double_t* sigma, Double_t &a , TGraphErrors *gr = new TGraphErrors(); for (unsigned int p = 0; p < m_NumberOfPeak; p++) { - //cout << p << " " << mean[p] << " " << Source_E[p] << endl; + cout << p << " " << mean[p] << " " << pedestal << " " << Source_E[p] << endl; errors[p] = 0.0001; gr->SetPoint(p, mean[p]-pedestal, Source_E[p]); gr->SetPointError(p, error_par[p], errors[p]); @@ -146,6 +146,9 @@ Double_t Calibration(TH1F* hist, Double_t* mean, Double_t* sigma, Double_t &a , } + //gr->SetPoint(3,4095,60); + //gr->SetPointError(3,5,1); + gr->SetMarkerStyle(8); gr->SetMarkerColor(2); gr->SetLineColor(2); @@ -159,6 +162,8 @@ Double_t Calibration(TH1F* hist, Double_t* mean, Double_t* sigma, Double_t &a , err_a = gr->GetFunction("pol1")->GetParError(1); err_b = gr->GetFunction("pol1")->GetParError(0); + cout << "Energy valu at channel=4095 -> " << b + a*4095 << " MeV" << endl; + /*TF1 *f1 = new TF1("f2","[0]+[1]*x",0,16384); f1->SetParameter(0,gr->GetFunction("pol1")->GetParameter(0)); f1->SetParameter(0,gr->GetFunction("pol1")->GetParameter(1)); @@ -197,9 +202,13 @@ void DefineSource() Source_E = new Double_t[Source_Number_Peak] ; Source_Sig = new Double_t[Source_Number_Peak] ; - Source_isotope[0]="ThSource"; Source_E[0] = 5.15 ; Source_Sig[0] = 0.00014 ; - Source_isotope[1]="ThSource"; Source_E[1] = 5.48 ; Source_Sig[1] = 0.00014 ; - Source_isotope[2]="ThSource"; Source_E[2] = 5.80 ; Source_Sig[2] = 0.00014 ; + //Source_isotope[0]="ThSource"; Source_E[0] = 5.15 ; Source_Sig[0] = 0.00014 ; + //Source_isotope[1]="ThSource"; Source_E[1] = 5.48 ; Source_Sig[1] = 0.00014 ; + //Source_isotope[2]="ThSource"; Source_E[2] = 5.80 ; Source_Sig[2] = 0.00014 ; + + Source_isotope[0]="ThSource"; Source_E[0] = 5.15-0.0819 ; Source_Sig[0] = 0.00014 ; + Source_isotope[1]="ThSource"; Source_E[1] = 5.48-0.0784 ; Source_Sig[1] = 0.00014 ; + Source_isotope[2]="ThSource"; Source_E[2] = 5.80-0.0749 ; Source_Sig[2] = 0.00014 ; cout << "/**** Source characteristics ****/" << endl; for(int i=0; i<m_NumberOfPeak; i++){ diff --git a/Projects/e850/Calibration/Energy/FitPedestal.C b/Projects/e850/Calibration/Energy/Calib_DE/FitPedestal.C similarity index 100% rename from Projects/e850/Calibration/Energy/FitPedestal.C rename to Projects/e850/Calibration/Energy/Calib_DE/FitPedestal.C diff --git a/Projects/e850/Calibration/Energy/Calib_E/CalibWithEloss.C b/Projects/e850/Calibration/Energy/Calib_E/CalibWithEloss.C new file mode 100755 index 0000000000000000000000000000000000000000..70fe5322e29d483625b35d7e55a027bb64532999 --- /dev/null +++ b/Projects/e850/Calibration/Energy/Calib_E/CalibWithEloss.C @@ -0,0 +1,124 @@ +int number_of_channels = 57; +int number_of_detectors = 8; +TChain* chain; +TH2F* h[8]; +TCutG *cut[8]; + + +/////////////////////////////////////////////// +void CalibWithEloss() +{ + // Energy loss table + NPL::EnergyLoss C12Al = NPL::EnergyLoss("EnergyLossTable/C12_Al.G4table","G4Table",100); + NPL::EnergyLoss C12Si = NPL::EnergyLoss("EnergyLossTable/C12_Si.G4table","G4Table",100); + + // Input file + chain = new TChain("PhysicsTree"); + chain->Add("../../../../../Outputs/Analysis/run_57_nocalib.root"); + + // cuts et histo + TFile *fcut=new TFile("cut/cut_file.root","read"); + + // Output file + TFile * ofile = new TFile("backE_histo_file_run57_eloss.root","recreate"); + + for(int k=0; k<number_of_detectors; k++){ + TString histo_name = Form("backE_h_det%i",k+1); + h[k] = new TH2F(histo_name,histo_name,1000,0,60000,500,0,200); + cut[k]=(TCutG*)fcut->Get(Form("cutC_det%i",k+1)); + } + + // reaction + NPL::Reaction *r1 = new NPL::Reaction("238U(12C,12C)238U@1417"); + TGraph *g1 = r1->GetKinematicLine3(); + + // TPISTAPhysics + TPISTAPhysics* pista = new TPISTAPhysics(); + chain->SetBranchAddress("PISTA",&pista); + + // branche vamos + ULong64_t fTS_TMW; + chain->SetBranchStatus("fTS_TMW",true); + chain->SetBranchAddress("fTS_TMW",&fTS_TMW); + + double thickness[8] = {106,108,108,105,106,108,108,106}; + + int nentries = chain->GetEntries(); + for(int i=0; i<nentries; i++){ + chain->GetEntry(i); + + + if(i%10000==0){ + cout << "\033[34m\r Processing tree..." << (double)i/nentries*100 << "\% done" << flush; + } + + int mult = pista->EventMultiplicity; + if(mult==1){ + int det = pista->DetectorNumber[0]; + int stripE = pista->E_StripNbr[0]; + int stripDE = pista->DE_StripNbr[0]; + double E_strip = pista->E[0]; + double DE_strip = pista->DE[0]; + double E_back = pista->back_E[0]; + TVector3 PosPista = TVector3(pista->PosX[0],pista->PosY[0],pista->PosZ[0]); + TVector3 PosTarget = TVector3(0,0,0); + TVector3 pos = PosPista - PosTarget; + double theta = pos.Theta()/TMath::Pi()*180; + + double Elab_th = C12Si.EvaluateEnergyFromDeltaE(DE_strip,thickness[det-1]*micrometer,0,10,200,0.05); + // E residual evolution // + // -1- Elab - Eloss in entrance dead layer of DE + double Eres = C12Al.Slow(Elab_th,0.5*micrometer,0); + // Subtraction from measured DE + Eres = Eres - DE_strip; + // -2- Elab - Eloss in back dead layer of DE + Eres = C12Al.Slow(Eres,0.5*micrometer,0); + // -3- Elab - Eloss in entrance dead layer of E + Eres = C12Al.Slow(Eres,0.5*micrometer,0); + + int condition = cut[det-1]->IsInside(E_back,DE_strip); + + if(det>0 && det<9 && stripE>0 && stripE<58 && stripDE>0 && stripDE<92 && E_back>18000 && fTS_TMW==0 && condition){ + h[det-1]->Fill(E_back,Eres); + } + } + } + + + + TF1* f1 = new TF1("f1","[0] + [1]*x",0,60000); + //f1-> SetParLimits(0,0,10); + //f1-> SetParLimits(1,0.002,0.003); + double p0, p1; + + ofstream ofile1; + string ofilename1 = "PISTA_BACK_E_eloss.cal"; + ofile1.open(ofilename1.c_str()); + + for(int i=0; i<number_of_detectors; i++){ + + + TString token = Form("PISTA_T%i_BACK_E",i+1); //PISTA_T%i_BACK_DE PISTA_T%i_backE_ENERGY + + int N = h[i]->GetEntries(); + if(N>0){ + //h[i]->SetMinimum(2); + h[i]->Fit("f1","qr"); + p0 = f1->GetParameter(0); + p1 = f1->GetParameter(1); + } + else{ + p0 = 0; + p1 = 1; + } + + ofile1 << token << " " << p0 << " " << p1 << endl; + } + ofile1.close(); + + ofile->Write(); + ofile->Close(); + + +} + diff --git a/Projects/e850/Calibration/Energy/Calib_E/EnergyLossTable/C12_Al.G4table b/Projects/e850/Calibration/Energy/Calib_E/EnergyLossTable/C12_Al.G4table new file mode 100644 index 0000000000000000000000000000000000000000..28c2238cd784a35edad4fc33e70261d16d14f266 --- /dev/null +++ b/Projects/e850/Calibration/Energy/Calib_E/EnergyLossTable/C12_Al.G4table @@ -0,0 +1,444 @@ +Table from Geant4 generate using NPSimulation Particle: C12 Material: NPS_Al +0 0 +0.001 0.171235 +0.002 0.190705 +0.003 0.201477 +0.004 0.209188 +0.005 0.215103 +0.006 0.219986 +0.007 0.224215 +0.008 0.228003 +0.009 0.231395 +0.01 0.23464 +0.011 0.237644 +0.012 0.240603 +0.013 0.243531 +0.014 0.246268 +0.015 0.248835 +0.016 0.251248 +0.018 0.256022 +0.02 0.260876 +0.022 0.26533 +0.024 0.269903 +0.026 0.274596 +0.028 0.27902 +0.03 0.283203 +0.032 0.287169 +0.034 0.290937 +0.036 0.295087 +0.038 0.299226 +0.04 0.303213 +0.042 0.307058 +0.044 0.310773 +0.046 0.314385 +0.048 0.318295 +0.05 0.322097 +0.052 0.325799 +0.054 0.329406 +0.056 0.332922 +0.058 0.336439 +0.06 0.340067 +0.062 0.343619 +0.064 0.347097 +0.066 0.350506 +0.07 0.357273 +0.074 0.364166 +0.078 0.370834 +0.082 0.377295 +0.086 0.383565 +0.09 0.389655 +0.094 0.395814 +0.098 0.402013 +0.102 0.408064 +0.106 0.413977 +0.11 0.41976 +0.114 0.425418 +0.118 0.431272 +0.122 0.43709 +0.126 0.442801 +0.13 0.448412 +0.134 0.453926 +0.138 0.459348 +0.142 0.464683 +0.146 0.469933 +0.15 0.475103 +0.154 0.480194 +0.158 0.485212 +0.162 0.490157 +0.166 0.495033 +0.174 0.504767 +0.182 0.514846 +0.19 0.524693 +0.198 0.534323 +0.206 0.543747 +0.214 0.552979 +0.222 0.562028 +0.23 0.570905 +0.238 0.579618 +0.246 0.588177 +0.254 0.596587 +0.262 0.604856 +0.27 0.612991 +0.278 0.620997 +0.286 0.628881 +0.294 0.636646 +0.302 0.644442 +0.31 0.652611 +0.318 0.66075 +0.326 0.668857 +0.334 0.67693 +0.342 0.684965 +0.35 0.693188 +0.358 0.701461 +0.366 0.709237 +0.374 0.716815 +0.382 0.724342 +0.39 0.731815 +0.398 0.739231 +0.406 0.746587 +0.422 0.76111 +0.438 0.775362 +0.454 0.789321 +0.47 0.803096 +0.486 0.816505 +0.502 0.829417 +0.518 0.841995 +0.534 0.854251 +0.55 0.866196 +0.566 0.877842 +0.582 0.889256 +0.598 0.900448 +0.614 0.911369 +0.63 0.922031 +0.646 0.932443 +0.662 0.942609 +0.678 0.952535 +0.694 0.962255 +0.71 0.971804 +0.742 0.990235 +0.774 1.00781 +0.806 1.02459 +0.838 1.04059 +0.87 1.05588 +0.902 1.07047 +0.934 1.08446 +0.966 1.09788 +0.998 1.11069 +1.03 1.12291 +1.062 1.13457 +1.094 1.14568 +1.158 1.16642 +1.222 1.18557 +1.286 1.20319 +1.35 1.2194 +1.414 1.2343 +1.478 1.24801 +1.542 1.26065 +1.606 1.27233 +1.734 1.2933 +1.862 1.31179 +1.99 1.3281 +2.118 1.34266 +2.246 1.35559 +2.502 1.37745 +2.758 1.39457 +3.014 1.40779 +3.526 1.42555 +4.038 1.43439 +5.062 1.43307 +7.11 1.39201 +9.158 1.33243 +11.206 1.26999 +13.254 1.20993 +15.302 1.15359 +17.35 1.10102 +19.398 1.05245 +21.446 1.00758 +23.494 0.9661 +25.542 0.927719 +27.59 0.89216 +29.638 0.859128 +31.686 0.828313 +33.734 0.799519 +35.782 0.772601 +37.83 0.747371 +39.878 0.723716 +41.926 0.701512 +43.974 0.680636 +46.022 0.660962 +48.07 0.642376 +50.118 0.624844 +52.166 0.608218 +54.214 0.592445 +56.262 0.577475 +58.31 0.56326 +60.358 0.549745 +62.406 0.536867 +64.454 0.524603 +66.502 0.512914 +68.55 0.501762 +70.598 0.491109 +72.646 0.480914 +74.694 0.471143 +76.742 0.461776 +78.79 0.452791 +80.838 0.444167 +82.886 0.435883 +84.934 0.427919 +86.982 0.420256 +89.03 0.41288 +91.078 0.405776 +93.126 0.398931 +95.174 0.39233 +97.222 0.385958 +99.27 0.379802 +101.318 0.373855 +103.366 0.368106 +105.414 0.362547 +107.462 0.357168 +109.51 0.351961 +111.558 0.346916 +113.606 0.342026 +115.654 0.337282 +117.702 0.332677 +119.75 0.328202 +121.798 0.323841 +123.846 0.319596 +125.894 0.315466 +127.942 0.311448 +129.99 0.307539 +132.038 0.303735 +134.086 0.300034 +136.134 0.296434 +138.182 0.29293 +140.23 0.28952 +142.278 0.286202 +144.326 0.282971 +146.374 0.279826 +148.422 0.276763 +150.47 0.273779 +152.518 0.270872 +154.566 0.268038 +156.614 0.265274 +158.662 0.262578 +160.71 0.259946 +162.758 0.257376 +166.854 0.252409 +170.95 0.247652 +175.046 0.243084 +179.142 0.238681 +183.238 0.234516 +187.334 0.23051 +191.43 0.226633 +195.526 0.222881 +199.622 0.21925 +203.718 0.215738 +207.814 0.21234 +211.91 0.209053 +216.006 0.205873 +220.102 0.202798 +224.198 0.199823 +228.294 0.196944 +232.39 0.19416 +236.486 0.191466 +240.582 0.188856 +244.678 0.186315 +248.774 0.183855 +252.87 0.181471 +256.966 0.179161 +261.062 0.176921 +265.158 0.17475 +269.254 0.172642 +273.35 0.170597 +277.446 0.168609 +281.542 0.166678 +285.638 0.164798 +289.734 0.162968 +293.83 0.161185 +297.926 0.159445 +302.022 0.157745 +306.118 0.156082 +310.214 0.154458 +314.31 0.152869 +318.406 0.151316 +322.502 0.149798 +326.598 0.148313 +334.79 0.145439 +342.982 0.142689 +351.174 0.140054 +359.366 0.137526 +367.558 0.135094 +375.75 0.132757 +383.942 0.130511 +392.134 0.128353 +400.326 0.126277 +408.518 0.124281 +416.71 0.122359 +424.902 0.120509 +433.094 0.118673 +441.286 0.116954 +449.478 0.115293 +457.67 0.113687 +465.862 0.112132 +474.054 0.110623 +482.246 0.109161 +490.438 0.107747 +498.63 0.106372 +506.822 0.105034 +515.014 0.103733 +523.206 0.102467 +531.398 0.101235 +539.59 0.100036 +547.782 0.0988688 +555.974 0.0977332 +564.166 0.0966276 +572.358 0.095551 +580.55 0.0945024 +588.742 0.0934808 +596.934 0.0924852 +605.126 0.091513 +613.318 0.0905641 +621.51 0.0896385 +629.702 0.0887354 +637.894 0.0878543 +654.278 0.0861548 +670.662 0.0845341 +687.046 0.0829865 +703.43 0.0815061 +719.814 0.0800871 +736.198 0.0787241 +752.582 0.0774142 +768.966 0.0761548 +785.35 0.0749436 +801.734 0.0737781 +818.118 0.0726557 +834.502 0.0715739 +850.886 0.0705304 +867.27 0.0695231 +883.654 0.0685505 +900.038 0.0676108 +916.422 0.0667025 +932.806 0.0658239 +949.19 0.0649733 +965.574 0.0641493 +981.958 0.0633503 +998.342 0.0625754 +1014.73 0.0618238 +1031.11 0.0610945 +1047.49 0.0603865 +1063.88 0.059699 +1080.26 0.0590311 +1096.65 0.0583819 +1113.03 0.0577505 +1129.41 0.0571361 +1145.8 0.0565379 +1162.18 0.0559551 +1178.57 0.0553869 +1194.95 0.0548324 +1211.33 0.0542901 +1244.1 0.053242 +1276.87 0.0522419 +1309.64 0.0512879 +1342.41 0.0503777 +1375.17 0.0495094 +1407.94 0.0486808 +1440.71 0.04789 +1473.48 0.0471348 +1506.25 0.0464133 +1539.01 0.0457233 +1571.78 0.0450627 +1604.55 0.0444296 +1637.32 0.0438218 +1670.09 0.0432374 +1702.85 0.0426741 +1735.62 0.0421301 +1768.39 0.0416031 +1801.16 0.0410918 +1833.93 0.0406094 +1866.69 0.0401398 +1899.46 0.0396827 +1932.23 0.0392379 +1965 0.038805 +1997.77 0.0383839 +2030.53 0.0379742 +2063.3 0.0375758 +2096.07 0.0371882 +2128.84 0.0368113 +2161.61 0.0364448 +2227.14 0.0357418 +2292.68 0.0350773 +2358.21 0.034449 +2423.75 0.0338534 +2489.29 0.0332876 +2554.82 0.0327518 +2620.36 0.0322441 +2685.89 0.0317626 +2751.43 0.0313052 +2816.97 0.03087 +2882.5 0.0304551 +2948.04 0.0300584 +3013.57 0.0296779 +3079.11 0.0293121 +3144.65 0.0289603 +3210.18 0.0286219 +3275.72 0.0282963 +3341.25 0.027983 +3406.79 0.0276814 +3472.33 0.0273909 +3537.86 0.0271109 +3603.4 0.0268408 +3734.47 0.0263273 +3865.54 0.0258486 +3996.61 0.0254022 +4127.69 0.0249858 +4258.76 0.0245967 +4389.83 0.0242324 +4520.9 0.0238905 +4651.97 0.0235684 +4783.05 0.0232636 +4914.12 0.0229764 +5045.19 0.0227036 +5176.26 0.022444 +5307.33 0.0221972 +5438.41 0.0219624 +5569.48 0.021739 +5700.55 0.0215264 +5962.69 0.0211312 +6224.84 0.0207711 +6486.98 0.0204429 +6749.13 0.0201434 +7011.27 0.019869 +7273.41 0.0196164 +7535.56 0.0193827 +7797.7 0.0191665 +8059.85 0.0189661 +8321.99 0.0187803 +8846.28 0.0184466 +9370.57 0.0181571 +9894.85 0.0179043 +10419.1 0.0176824 +10943.4 0.0174867 +11467.7 0.0173127 +12516.3 0.0170144 +13564.9 0.0167747 +14613.4 0.0165815 +15662 0.0164248 +17759.2 0.0161936 +19856.3 0.0160406 +24050.6 0.0158792 +28244.9 0.0158289 +36633.5 0.0158817 +53410.8 0.0161769 +70188 0.0165003 +86965.2 0.0167957 +103742 0.0170573 +120520 0.0172886 +137297 0.0174945 +154074 0.017679 +170851 0.0178458 +204406 0.0181366 +237960 0.0183833 +271515 0.0184476 +338623 0.0184998 +472841 0.0185683 +741277 0.0186393 diff --git a/Projects/e850/Calibration/Energy/Calib_E/EnergyLossTable/C12_Si.G4table b/Projects/e850/Calibration/Energy/Calib_E/EnergyLossTable/C12_Si.G4table new file mode 100644 index 0000000000000000000000000000000000000000..a52982c8567ceaea06548f11ded2dbc493fd125c --- /dev/null +++ b/Projects/e850/Calibration/Energy/Calib_E/EnergyLossTable/C12_Si.G4table @@ -0,0 +1,444 @@ +Table from Geant4 generate using NPSimulation Particle: C12 Material: NPS_Si +0 0 +0.001 0.144348 +0.002 0.160864 +0.003 0.169893 +0.004 0.1764 +0.005 0.181323 +0.006 0.185329 +0.007 0.188796 +0.008 0.191886 +0.009 0.194671 +0.01 0.197212 +0.011 0.199679 +0.012 0.201948 +0.013 0.204249 +0.014 0.206494 +0.015 0.208602 +0.016 0.210585 +0.018 0.214223 +0.02 0.218025 +0.022 0.221678 +0.024 0.22505 +0.026 0.228656 +0.028 0.232273 +0.03 0.235695 +0.032 0.23894 +0.034 0.242026 +0.036 0.244967 +0.038 0.248066 +0.04 0.251319 +0.042 0.254458 +0.044 0.257491 +0.046 0.260424 +0.048 0.263266 +0.05 0.266141 +0.052 0.269158 +0.054 0.272097 +0.056 0.274964 +0.058 0.277762 +0.06 0.280494 +0.064 0.286039 +0.068 0.291536 +0.072 0.296827 +0.076 0.30214 +0.08 0.307478 +0.084 0.312655 +0.088 0.317682 +0.092 0.322568 +0.096 0.327324 +0.1 0.332078 +0.104 0.336939 +0.108 0.341691 +0.112 0.346341 +0.116 0.350893 +0.12 0.355352 +0.124 0.359782 +0.128 0.364378 +0.132 0.368895 +0.136 0.373335 +0.14 0.377702 +0.144 0.382 +0.148 0.386231 +0.152 0.390397 +0.156 0.394502 +0.16 0.398548 +0.164 0.402536 +0.168 0.40647 +0.176 0.41418 +0.184 0.421692 +0.192 0.429568 +0.2 0.437337 +0.208 0.444943 +0.216 0.452394 +0.224 0.4597 +0.232 0.466868 +0.24 0.473906 +0.248 0.480819 +0.256 0.487613 +0.264 0.494295 +0.272 0.500869 +0.28 0.50734 +0.288 0.513712 +0.296 0.51999 +0.304 0.527185 +0.312 0.535377 +0.32 0.543582 +0.328 0.551792 +0.336 0.560003 +0.344 0.568209 +0.352 0.576404 +0.36 0.584583 +0.368 0.592328 +0.376 0.600246 +0.384 0.608186 +0.392 0.616086 +0.4 0.623941 +0.408 0.631745 +0.416 0.639493 +0.424 0.647179 +0.432 0.654796 +0.44 0.66234 +0.448 0.669805 +0.456 0.677185 +0.464 0.684473 +0.472 0.691666 +0.48 0.698756 +0.488 0.705657 +0.504 0.719243 +0.52 0.732454 +0.536 0.745246 +0.552 0.757626 +0.568 0.769598 +0.584 0.781167 +0.6 0.79234 +0.616 0.803111 +0.632 0.813588 +0.648 0.8237 +0.664 0.83346 +0.68 0.84288 +0.696 0.851974 +0.712 0.860754 +0.728 0.869234 +0.76 0.88543 +0.792 0.900617 +0.824 0.914841 +0.856 0.928193 +0.888 0.940751 +0.92 0.952579 +0.952 0.963738 +0.984 0.97429 +1.016 0.984373 +1.048 0.993939 +1.112 1.01165 +1.176 1.02769 +1.24 1.04237 +1.304 1.05596 +1.368 1.0684 +1.432 1.0798 +1.496 1.09025 +1.624 1.10867 +1.752 1.12444 +1.88 1.13807 +2.008 1.15017 +2.136 1.16088 +2.392 1.17861 +2.648 1.19248 +2.904 1.20317 +3.416 1.21767 +3.928 1.2254 +4.952 1.22649 +7 1.19712 +9.048 1.1501 +11.096 1.09882 +13.144 1.04849 +15.192 1.00082 +17.24 0.956043 +19.288 0.914487 +21.336 0.876078 +23.384 0.840494 +25.432 0.807465 +27.48 0.7768 +29.528 0.748278 +31.576 0.721673 +33.624 0.696816 +35.672 0.673563 +37.72 0.651755 +39.768 0.631299 +41.816 0.612084 +43.864 0.594008 +45.912 0.576964 +47.96 0.560849 +50.008 0.545647 +52.056 0.53123 +54.104 0.517549 +56.152 0.50456 +58.2 0.49222 +60.248 0.480483 +62.296 0.469294 +64.344 0.458637 +66.392 0.448476 +68.44 0.438779 +70.488 0.429513 +72.536 0.420643 +74.584 0.412142 +76.632 0.403992 +78.68 0.396174 +80.728 0.388668 +82.776 0.381458 +84.824 0.374525 +86.872 0.367853 +88.92 0.361429 +90.968 0.355241 +93.016 0.349276 +95.064 0.343522 +97.112 0.337966 +99.16 0.332598 +101.208 0.327412 +103.256 0.322399 +105.304 0.31755 +107.352 0.312859 +109.4 0.308316 +111.448 0.303916 +113.496 0.29965 +115.544 0.295512 +117.592 0.291493 +119.64 0.287588 +121.688 0.283782 +123.736 0.280077 +125.784 0.276473 +127.832 0.272966 +129.88 0.269554 +131.928 0.266233 +133.976 0.263002 +136.024 0.259858 +138.072 0.256798 +140.12 0.253821 +142.168 0.250922 +144.216 0.2481 +146.264 0.245352 +148.312 0.242676 +150.36 0.240068 +152.408 0.237527 +154.456 0.235051 +156.504 0.232635 +158.552 0.230278 +160.6 0.227977 +164.696 0.223535 +168.792 0.219286 +172.888 0.215212 +176.984 0.21129 +181.08 0.20753 +185.176 0.203968 +189.272 0.200521 +193.368 0.197185 +197.464 0.193956 +201.56 0.190832 +205.656 0.18781 +209.752 0.184886 +213.848 0.182058 +217.944 0.179322 +222.04 0.176675 +226.136 0.174115 +230.232 0.171637 +234.328 0.169239 +238.424 0.166919 +242.52 0.164663 +246.616 0.162474 +250.712 0.160354 +254.808 0.158299 +258.904 0.156308 +263 0.154377 +267.096 0.152503 +271.192 0.150685 +275.288 0.148919 +279.384 0.147203 +283.48 0.145535 +287.576 0.14391 +291.672 0.142328 +295.768 0.140785 +299.864 0.139279 +303.96 0.137806 +308.056 0.136366 +312.152 0.134959 +316.248 0.133583 +320.344 0.132237 +324.44 0.130921 +332.632 0.128376 +340.824 0.125939 +349.016 0.123605 +357.208 0.121366 +365.4 0.119214 +373.592 0.117144 +381.784 0.115156 +389.976 0.113245 +398.168 0.111407 +406.36 0.10964 +414.552 0.107939 +422.744 0.106302 +430.936 0.104675 +439.128 0.103154 +447.32 0.101685 +455.512 0.100265 +463.704 0.0988898 +471.896 0.0975568 +480.088 0.0962622 +488.28 0.0950138 +496.472 0.0937992 +504.664 0.0926176 +512.856 0.091468 +521.048 0.0903494 +529.24 0.0892611 +537.432 0.0882021 +545.624 0.0871714 +553.816 0.0861683 +562.008 0.0851917 +570.2 0.0842409 +578.392 0.0833147 +586.584 0.0824125 +594.776 0.0815332 +602.968 0.0806753 +611.16 0.0798374 +619.352 0.07902 +627.544 0.0782227 +635.736 0.0774447 +652.12 0.0759442 +668.504 0.0745134 +684.888 0.0731473 +701.272 0.0718408 +717.656 0.0705888 +734.04 0.0693863 +750.424 0.0682306 +766.808 0.0671195 +783.192 0.0660509 +799.576 0.0650226 +815.96 0.0640324 +832.344 0.0630782 +848.728 0.0621578 +865.112 0.0612693 +881.496 0.0604115 +897.88 0.0595828 +914.264 0.0587817 +930.648 0.0580069 +947.032 0.0572569 +963.416 0.0565303 +979.8 0.0558259 +996.184 0.0551427 +1012.57 0.05448 +1028.95 0.0538369 +1045.34 0.0532127 +1061.72 0.0526066 +1078.1 0.0520178 +1094.49 0.0514454 +1110.87 0.0508888 +1127.26 0.0503472 +1143.64 0.0498199 +1160.02 0.0493062 +1176.41 0.0488054 +1192.79 0.0483168 +1209.18 0.0478391 +1241.94 0.0469155 +1274.71 0.0460342 +1307.48 0.0451934 +1340.25 0.0443912 +1373.02 0.0436259 +1405.78 0.0428957 +1438.55 0.0421987 +1471.32 0.0415331 +1504.09 0.0408971 +1536.86 0.040289 +1569.62 0.0397068 +1602.39 0.0391489 +1635.16 0.0386133 +1667.93 0.0380983 +1700.7 0.0376021 +1733.46 0.0371228 +1766.23 0.0366587 +1799 0.0362079 +1831.77 0.0357827 +1864.54 0.0353692 +1897.3 0.0349667 +1930.07 0.034575 +1962.84 0.0341938 +1995.61 0.0338229 +2028.38 0.0334621 +2061.14 0.0331112 +2093.91 0.0327699 +2126.68 0.0324379 +2159.45 0.0321151 +2224.98 0.031496 +2290.52 0.0309107 +2356.06 0.0303573 +2421.59 0.0298328 +2487.13 0.0293344 +2552.66 0.0288624 +2618.2 0.0284152 +2683.74 0.0279911 +2749.27 0.0275882 +2814.81 0.0272049 +2880.34 0.0268394 +2945.88 0.02649 +3011.42 0.026155 +3076.95 0.0258329 +3142.49 0.0255231 +3208.02 0.0252251 +3273.56 0.0249384 +3339.1 0.0246625 +3404.63 0.024397 +3470.17 0.0241411 +3535.7 0.0238946 +3601.24 0.0236568 +3732.31 0.0232045 +3863.38 0.022783 +3994.46 0.02239 +4125.53 0.0220234 +4256.6 0.0216808 +4387.67 0.02136 +4518.74 0.021059 +4649.82 0.0207754 +4780.89 0.0205071 +4911.96 0.0202543 +5043.03 0.0200141 +5174.1 0.0197857 +5305.18 0.0195684 +5436.25 0.0193617 +5567.32 0.0191651 +5698.39 0.0189781 +5960.54 0.0186303 +6222.68 0.0183134 +6484.82 0.0180246 +6746.97 0.017761 +7009.11 0.0175195 +7271.26 0.0172973 +7533.4 0.0170917 +7795.54 0.0169014 +8057.69 0.0167251 +8319.83 0.0165616 +8844.12 0.0162681 +9368.41 0.0160134 +9892.7 0.0157911 +10417 0.015596 +10941.3 0.015424 +11465.6 0.0152709 +12514.1 0.0150101 +13562.7 0.0148024 +14611.3 0.0146353 +15659.9 0.0145002 +17757 0.0143017 +19854.2 0.0141716 +24048.5 0.0140374 +32437.1 0.0140149 +49214.3 0.0142613 +65991.5 0.0145636 +82768.7 0.0148433 +99545.9 0.0150912 +116323 0.0153099 +133100 0.0155039 +149878 0.0156774 +166655 0.0158337 +200209 0.0161055 +233764 0.0163352 +267318 0.0164197 +334427 0.0164751 +468645 0.016548 +737080 0.0166238 diff --git a/Projects/e850/Calibration/Energy/Calib_E/FillHistoE.C b/Projects/e850/Calibration/Energy/Calib_E/FillHistoE.C new file mode 100755 index 0000000000000000000000000000000000000000..ac86ad462d6c3a8e6c4d0fab8c11dde42e097980 --- /dev/null +++ b/Projects/e850/Calibration/Energy/Calib_E/FillHistoE.C @@ -0,0 +1,133 @@ +int number_of_channels = 57; +int number_of_detectors = 8; +TChain* chain; +TH2F* h[8]; +TCutG *cut[8]; +TH2F* h2[8]; + + +/////////////////////////////////////////////// +void FillHistoE() +{ + // Energy loss table + NPL::EnergyLoss C12Al = NPL::EnergyLoss("EnergyLossTable/C12_Al.G4table","G4Table",100); + + // Input file + chain = new TChain("PhysicsTree"); + chain->Add("../../../../../Outputs/Analysis/run_57_nocalib.root"); + + // cuts et histo + TFile *fcut=new TFile("cut/cut_file.root","read"); + + // Output file + TFile * ofile = new TFile("backE_histo_file_run57.root","recreate"); + + for(int k=0; k<number_of_detectors; k++){ + TString histo_name = Form("backE_h_det%i",k+1); + h[k] = new TH2F(histo_name,histo_name,1000,0,60000,500,0,200); + cut[k]=(TCutG*)fcut->Get(Form("cutC_det%i",k+1)); + TString histo_name2 = Form("cinematique_h2_det%i",k+1); + h2[k] = new TH2F(histo_name2,histo_name2,500,0,60,500,0,200); + } + + // reaction + NPL::Reaction *r1 = new NPL::Reaction("238U(12C,12C)238U@1417"); + TGraph *g1 = r1->GetKinematicLine3(); + + // TPISTAPhysics + TPISTAPhysics* pista = new TPISTAPhysics(); + chain->SetBranchAddress("PISTA",&pista); + + // branche vamos + ULong64_t fTS_TMW; + chain->SetBranchStatus("fTS_TMW",true); + chain->SetBranchAddress("fTS_TMW",&fTS_TMW); + + + int nentries = chain->GetEntries(); + for(int i=0; i<nentries; i++){ + chain->GetEntry(i); + + + if(i%10000==0){ + cout << "\033[34m\r Processing tree..." << (double)i/nentries*100 << "\% done" << flush; + } + + int mult = pista->EventMultiplicity; + if(mult==1){ + int det = pista->DetectorNumber[0]; + int stripE = pista->E_StripNbr[0]; + int stripDE = pista->DE_StripNbr[0]; + double E_strip = pista->E[0]; + double DE_strip = pista->DE[0]; + double E_back = pista->back_E[0]; + TVector3 PosPista = TVector3(pista->PosX[0],pista->PosY[0],pista->PosZ[0]); + TVector3 PosTarget = TVector3(-0.98, -0.4, 0); + TVector3 pos = PosPista - PosTarget; + double theta = pos.Theta()/TMath::Pi()*180; + + double Elab_th = g1->Eval(theta); + // E residual evolution // + // -1- Elab - Eloss in entrance dead layer of DE + double Eres = C12Al.Slow(Elab_th,0.5*micrometer,0); + // Subtraction from measured DE + Eres = Eres - DE_strip; + // -2- Elab - Eloss in back dead layer of DE + Eres = C12Al.Slow(Eres,0.5*micrometer,0); + // -3- Elab - Eloss in entrance dead layer of E + Eres = C12Al.Slow(Eres,0.5*micrometer,0); + + double p0 = 0.01; + double p1 = 2.85e-3; + + double Ecal = p0 + p1*E_back; + double Elab = DE_strip+Ecal; + double Ex = r1->ReconstructRelativistic(Elab,theta*TMath::Pi()/180.); + + int condition = cut[det-1]->IsInside(E_back,DE_strip); + + if(det>0 && det<9 && stripE>0 && stripE<58 && stripDE>0 && stripDE<92 && E_back>18000 && fTS_TMW==0 && condition && Ex<2.5 && Ex>-2){ + h[det-1]->Fill(E_back,Eres); + h2[det-1]->Fill(theta,Elab); + } + } + } + + + + TF1* f1 = new TF1("f1","[0] + [1]*x",0,60000); + //f1-> SetParLimits(0,0,10); + //f1-> SetParLimits(1,0.002,0.003); + double p0, p1; + + ofstream ofile1; + string ofilename1 = "PISTA_BACK_E_run57.cal"; + ofile1.open(ofilename1.c_str()); + + for(int i=0; i<number_of_detectors; i++){ + + + TString token = Form("PISTA_T%i_BACK_E",i+1); //PISTA_T%i_BACK_DE PISTA_T%i_backE_ENERGY + + int N = h[i]->GetEntries(); + if(N>0){ + //h[i]->SetMinimum(2); + h[i]->Fit("f1","qr"); + p0 = f1->GetParameter(0); + p1 = f1->GetParameter(1); + } + else{ + p0 = 0; + p1 = 1; + } + + ofile1 << token << " " << p0 << " " << p1 << endl; + } + ofile1.close(); + + ofile->Write(); + ofile->Close(); + + +} + diff --git a/Projects/e850/Calibration/Energy/PISTA1_DE.cal b/Projects/e850/Calibration/Energy/PISTA1_DE.cal index d60a2179f5eb805b083d0a36c2219be81c42dd42..bf5dc82cfe7b6e90df09ceaa92ffd701c57471cb 100644 --- a/Projects/e850/Calibration/Energy/PISTA1_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA1_DE.cal @@ -1,91 +1,91 @@ -PISTA_T1_STRIP1_DE_ENERGY 0.0375204 0.0133847 -PISTA_T1_STRIP2_DE_ENERGY -0.250984 0.0134891 -PISTA_T1_STRIP3_DE_ENERGY -0.0533137 0.0136616 -PISTA_T1_STRIP4_DE_ENERGY -0.284996 0.0133891 -PISTA_T1_STRIP5_DE_ENERGY -0.0410189 0.0134518 -PISTA_T1_STRIP6_DE_ENERGY -0.264525 0.0133961 -PISTA_T1_STRIP7_DE_ENERGY -0.104827 0.0135797 -PISTA_T1_STRIP8_DE_ENERGY -0.238876 0.0132002 -PISTA_T1_STRIP9_DE_ENERGY -0.0333293 0.0133463 -PISTA_T1_STRIP10_DE_ENERGY -0.259016 0.0135331 -PISTA_T1_STRIP11_DE_ENERGY -0.0851965 0.0136331 -PISTA_T1_STRIP12_DE_ENERGY -0.205032 0.0135984 -PISTA_T1_STRIP13_DE_ENERGY 0.0427829 0.0134188 -PISTA_T1_STRIP14_DE_ENERGY -0.315366 0.0134708 -PISTA_T1_STRIP15_DE_ENERGY -0.057695 0.0137871 -PISTA_T1_STRIP16_DE_ENERGY -0.249727 0.0134639 -PISTA_T1_STRIP17_DE_ENERGY -0.0420885 0.0134243 -PISTA_T1_STRIP18_DE_ENERGY -0.269012 0.013355 -PISTA_T1_STRIP19_DE_ENERGY -0.134319 0.0136862 -PISTA_T1_STRIP20_DE_ENERGY -0.239971 0.0135813 -PISTA_T1_STRIP21_DE_ENERGY -0.0202621 0.0134114 -PISTA_T1_STRIP22_DE_ENERGY -0.27168 0.0134954 -PISTA_T1_STRIP23_DE_ENERGY -0.103223 0.0137887 -PISTA_T1_STRIP24_DE_ENERGY -0.26553 0.0134267 -PISTA_T1_STRIP25_DE_ENERGY -0.0145022 0.0134548 -PISTA_T1_STRIP26_DE_ENERGY -0.321058 0.013554 -PISTA_T1_STRIP27_DE_ENERGY -0.0960329 0.0137758 -PISTA_T1_STRIP28_DE_ENERGY -0.293524 0.0136068 -PISTA_T1_STRIP29_DE_ENERGY -0.0598247 0.013478 -PISTA_T1_STRIP30_DE_ENERGY -0.247273 0.0135214 -PISTA_T1_STRIP31_DE_ENERGY -0.0621278 0.0138403 -PISTA_T1_STRIP32_DE_ENERGY -0.199192 0.0134393 -PISTA_T1_STRIP33_DE_ENERGY -0.259826 0.0136155 -PISTA_T1_STRIP34_DE_ENERGY -0.0461982 0.0136009 -PISTA_T1_STRIP35_DE_ENERGY -0.248783 0.0136658 -PISTA_T1_STRIP36_DE_ENERGY 0.00834115 0.013602 -PISTA_T1_STRIP37_DE_ENERGY -0.237908 0.0136137 -PISTA_T1_STRIP38_DE_ENERGY -0.0745486 0.0137542 -PISTA_T1_STRIP39_DE_ENERGY -0.254271 0.0135985 -PISTA_T1_STRIP40_DE_ENERGY -0.0160367 0.0135368 -PISTA_T1_STRIP41_DE_ENERGY -0.220308 0.0134872 -PISTA_T1_STRIP42_DE_ENERGY -0.101196 0.0137336 -PISTA_T1_STRIP43_DE_ENERGY -0.262056 0.0136736 -PISTA_T1_STRIP44_DE_ENERGY -0.0445917 0.0136216 -PISTA_T1_STRIP45_DE_ENERGY -0.245087 0.0137591 -PISTA_T1_STRIP46_DE_ENERGY -0.0296806 0.0137087 -PISTA_T1_STRIP47_DE_ENERGY -0.321397 0.0136703 -PISTA_T1_STRIP48_DE_ENERGY -0.0540392 0.013641 -PISTA_T1_STRIP49_DE_ENERGY -0.197838 0.013753 -PISTA_T1_STRIP50_DE_ENERGY -0.0377873 0.0136576 -PISTA_T1_STRIP51_DE_ENERGY -0.230914 0.0137126 -PISTA_T1_STRIP52_DE_ENERGY -0.0242219 0.013621 -PISTA_T1_STRIP53_DE_ENERGY -0.212611 0.0137081 -PISTA_T1_STRIP54_DE_ENERGY -0.0344684 0.0136908 -PISTA_T1_STRIP55_DE_ENERGY -0.298506 0.0138031 -PISTA_T1_STRIP56_DE_ENERGY 0.0262385 0.013601 -PISTA_T1_STRIP57_DE_ENERGY -0.259146 0.0135069 -PISTA_T1_STRIP58_DE_ENERGY 0.0020525 0.0136788 -PISTA_T1_STRIP59_DE_ENERGY -0.290273 0.0137981 -PISTA_T1_STRIP60_DE_ENERGY -0.0436365 0.0136015 -PISTA_T1_STRIP61_DE_ENERGY -0.221135 0.0137887 -PISTA_T1_STRIP62_DE_ENERGY -0.0754253 0.0139597 -PISTA_T1_STRIP63_DE_ENERGY -0.253341 0.0137752 -PISTA_T1_STRIP64_DE_ENERGY -0.0156214 0.0134952 -PISTA_T1_STRIP65_DE_ENERGY -0.0573823 0.0135394 -PISTA_T1_STRIP66_DE_ENERGY -0.275723 0.0136782 -PISTA_T1_STRIP67_DE_ENERGY -0.0968323 0.0138786 -PISTA_T1_STRIP68_DE_ENERGY -0.198381 0.0134848 -PISTA_T1_STRIP69_DE_ENERGY -0.0142888 0.0134602 -PISTA_T1_STRIP70_DE_ENERGY -0.27763 0.0135506 -PISTA_T1_STRIP71_DE_ENERGY -0.00810057 0.013911 -PISTA_T1_STRIP72_DE_ENERGY -0.219678 0.0135475 -PISTA_T1_STRIP73_DE_ENERGY -0.0123609 0.0136964 -PISTA_T1_STRIP74_DE_ENERGY -0.257184 0.0136993 -PISTA_T1_STRIP75_DE_ENERGY -0.108491 0.0138689 -PISTA_T1_STRIP76_DE_ENERGY -0.231837 0.013774 -PISTA_T1_STRIP77_DE_ENERGY -0.0117256 0.0136439 -PISTA_T1_STRIP78_DE_ENERGY -0.285277 0.0136302 -PISTA_T1_STRIP79_DE_ENERGY -0.0331245 0.0137399 -PISTA_T1_STRIP80_DE_ENERGY -0.202902 0.0136048 -PISTA_T1_STRIP81_DE_ENERGY -0.0566098 0.0136479 -PISTA_T1_STRIP82_DE_ENERGY -0.234488 0.0136397 -PISTA_T1_STRIP83_DE_ENERGY -0.104134 0.0139168 -PISTA_T1_STRIP84_DE_ENERGY -0.137725 0.0136184 -PISTA_T1_STRIP85_DE_ENERGY -0.0562567 0.0136488 -PISTA_T1_STRIP86_DE_ENERGY -0.258463 0.0136778 -PISTA_T1_STRIP87_DE_ENERGY -0.105427 0.0138419 -PISTA_T1_STRIP88_DE_ENERGY -0.148585 0.0134262 -PISTA_T1_STRIP89_DE_ENERGY -0.0472307 0.0136855 -PISTA_T1_STRIP90_DE_ENERGY -0.260557 0.0137229 -PISTA_T1_STRIP91_DE_ENERGY -0.0593512 0.0139373 +PISTA_T1_STRIP1_DE_ENERGY -0.0994149 0.0135288 +PISTA_T1_STRIP2_DE_ENERGY -0.391045 0.0136344 +PISTA_T1_STRIP3_DE_ENERGY -0.191238 0.0138086 +PISTA_T1_STRIP4_DE_ENERGY -0.425444 0.0135333 +PISTA_T1_STRIP5_DE_ENERGY -0.178819 0.0135966 +PISTA_T1_STRIP6_DE_ENERGY -0.404779 0.0135404 +PISTA_T1_STRIP7_DE_ENERGY -0.243337 0.0137259 +PISTA_T1_STRIP8_DE_ENERGY -0.378829 0.0133423 +PISTA_T1_STRIP9_DE_ENERGY -0.171075 0.01349 +PISTA_T1_STRIP10_DE_ENERGY -0.399208 0.0136789 +PISTA_T1_STRIP11_DE_ENERGY -0.223521 0.01378 +PISTA_T1_STRIP12_DE_ENERGY -0.344621 0.0137448 +PISTA_T1_STRIP13_DE_ENERGY -0.0941206 0.0135633 +PISTA_T1_STRIP14_DE_ENERGY -0.456135 0.0136159 +PISTA_T1_STRIP15_DE_ENERGY -0.19573 0.0139356 +PISTA_T1_STRIP16_DE_ENERGY -0.389827 0.0136089 +PISTA_T1_STRIP17_DE_ENERGY -0.179894 0.0135688 +PISTA_T1_STRIP18_DE_ENERGY -0.409319 0.0134989 +PISTA_T1_STRIP19_DE_ENERGY -0.27313 0.0138335 +PISTA_T1_STRIP20_DE_ENERGY -0.379958 0.0137276 +PISTA_T1_STRIP21_DE_ENERGY -0.157886 0.0135559 +PISTA_T1_STRIP22_DE_ENERGY -0.411987 0.0136407 +PISTA_T1_STRIP23_DE_ENERGY -0.24172 0.0139372 +PISTA_T1_STRIP24_DE_ENERGY -0.405739 0.0135712 +PISTA_T1_STRIP25_DE_ENERGY -0.152038 0.0135997 +PISTA_T1_STRIP26_DE_ENERGY -0.461895 0.0137 +PISTA_T1_STRIP27_DE_ENERGY -0.234429 0.0139241 +PISTA_T1_STRIP28_DE_ENERGY -0.434088 0.0137534 +PISTA_T1_STRIP29_DE_ENERGY -0.197851 0.0136232 +PISTA_T1_STRIP30_DE_ENERGY -0.387337 0.0136671 +PISTA_T1_STRIP31_DE_ENERGY -0.200199 0.0139894 +PISTA_T1_STRIP32_DE_ENERGY -0.338736 0.0135841 +PISTA_T1_STRIP33_DE_ENERGY -0.399976 0.0137621 +PISTA_T1_STRIP34_DE_ENERGY -0.184071 0.0137474 +PISTA_T1_STRIP35_DE_ENERGY -0.388863 0.013813 +PISTA_T1_STRIP36_DE_ENERGY -0.128988 0.0137486 +PISTA_T1_STRIP37_DE_ENERGY -0.377817 0.0137602 +PISTA_T1_STRIP38_DE_ENERGY -0.212737 0.0139024 +PISTA_T1_STRIP39_DE_ENERGY -0.394438 0.0137451 +PISTA_T1_STRIP40_DE_ENERGY -0.153565 0.0136826 +PISTA_T1_STRIP41_DE_ENERGY -0.360099 0.0136325 +PISTA_T1_STRIP42_DE_ENERGY -0.239682 0.0138815 +PISTA_T1_STRIP43_DE_ENERGY -0.402275 0.0138209 +PISTA_T1_STRIP44_DE_ENERGY -0.182481 0.0137684 +PISTA_T1_STRIP45_DE_ENERGY -0.385088 0.0139073 +PISTA_T1_STRIP46_DE_ENERGY -0.16738 0.0138563 +PISTA_T1_STRIP47_DE_ENERGY -0.462239 0.0138175 +PISTA_T1_STRIP48_DE_ENERGY -0.191977 0.0137878 +PISTA_T1_STRIP49_DE_ENERGY -0.337354 0.0139011 +PISTA_T1_STRIP50_DE_ENERGY -0.175585 0.0138048 +PISTA_T1_STRIP51_DE_ENERGY -0.370789 0.0138603 +PISTA_T1_STRIP52_DE_ENERGY -0.161857 0.0137676 +PISTA_T1_STRIP53_DE_ENERGY -0.352266 0.0138557 +PISTA_T1_STRIP54_DE_ENERGY -0.172212 0.0138382 +PISTA_T1_STRIP55_DE_ENERGY -0.439116 0.0139518 +PISTA_T1_STRIP56_DE_ENERGY -0.110887 0.0137475 +PISTA_T1_STRIP57_DE_ENERGY -0.39934 0.0136524 +PISTA_T1_STRIP58_DE_ENERGY -0.135334 0.0138262 +PISTA_T1_STRIP59_DE_ENERGY -0.43077 0.0139466 +PISTA_T1_STRIP60_DE_ENERGY -0.181486 0.013748 +PISTA_T1_STRIP61_DE_ENERGY -0.360908 0.0139372 +PISTA_T1_STRIP62_DE_ENERGY -0.213595 0.01411 +PISTA_T1_STRIP63_DE_ENERGY -0.393456 0.0139236 +PISTA_T1_STRIP64_DE_ENERGY -0.153191 0.0136406 +PISTA_T1_STRIP65_DE_ENERGY -0.195348 0.0136851 +PISTA_T1_STRIP66_DE_ENERGY -0.416103 0.0138256 +PISTA_T1_STRIP67_DE_ENERGY -0.235277 0.0140281 +PISTA_T1_STRIP68_DE_ENERGY -0.337885 0.01363 +PISTA_T1_STRIP69_DE_ENERGY -0.151834 0.0136052 +PISTA_T1_STRIP70_DE_ENERGY -0.418016 0.0136966 +PISTA_T1_STRIP71_DE_ENERGY -0.145564 0.0140608 +PISTA_T1_STRIP72_DE_ENERGY -0.359417 0.0136934 +PISTA_T1_STRIP73_DE_ENERGY -0.149873 0.0138439 +PISTA_T1_STRIP74_DE_ENERGY -0.397382 0.0138469 +PISTA_T1_STRIP75_DE_ENERGY -0.247055 0.0140183 +PISTA_T1_STRIP76_DE_ENERGY -0.371715 0.0139223 +PISTA_T1_STRIP77_DE_ENERGY -0.149237 0.0137908 +PISTA_T1_STRIP78_DE_ENERGY -0.425745 0.013777 +PISTA_T1_STRIP79_DE_ENERGY -0.17086 0.0138879 +PISTA_T1_STRIP80_DE_ENERGY -0.342455 0.0137513 +PISTA_T1_STRIP81_DE_ENERGY -0.194601 0.0137948 +PISTA_T1_STRIP82_DE_ENERGY -0.374447 0.0137867 +PISTA_T1_STRIP83_DE_ENERGY -0.24262 0.0140667 +PISTA_T1_STRIP84_DE_ENERGY -0.276585 0.013765 +PISTA_T1_STRIP85_DE_ENERGY -0.194259 0.0137958 +PISTA_T1_STRIP86_DE_ENERGY -0.398632 0.0138251 +PISTA_T1_STRIP87_DE_ENERGY -0.243965 0.013991 +PISTA_T1_STRIP88_DE_ENERGY -0.287553 0.0135708 +PISTA_T1_STRIP89_DE_ENERGY -0.18512 0.0138329 +PISTA_T1_STRIP90_DE_ENERGY -0.400775 0.0138708 +PISTA_T1_STRIP91_DE_ENERGY -0.197375 0.0140874 diff --git a/Projects/e850/Calibration/Energy/PISTA2_DE.cal b/Projects/e850/Calibration/Energy/PISTA2_DE.cal index a62c111fa0afcf8d0fe678b909b385d618da87d7..f9607d4dbeedb5c28fd38904534da96bb2614049 100644 --- a/Projects/e850/Calibration/Energy/PISTA2_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA2_DE.cal @@ -1,91 +1,91 @@ -PISTA_T2_STRIP1_DE_ENERGY -0.232304 0.0133881 -PISTA_T2_STRIP2_DE_ENERGY -0.0923212 0.0134901 -PISTA_T2_STRIP3_DE_ENERGY -0.250523 0.0135416 -PISTA_T2_STRIP4_DE_ENERGY -0.0980523 0.0135219 -PISTA_T2_STRIP5_DE_ENERGY -0.218634 0.0133426 -PISTA_T2_STRIP6_DE_ENERGY -0.0560668 0.013534 -PISTA_T2_STRIP7_DE_ENERGY -0.320135 0.0136044 -PISTA_T2_STRIP8_DE_ENERGY -0.097992 0.0134927 -PISTA_T2_STRIP9_DE_ENERGY -0.264966 0.0135007 -PISTA_T2_STRIP10_DE_ENERGY -0.0483782 0.0135367 -PISTA_T2_STRIP11_DE_ENERGY -0.234301 0.0134278 -PISTA_T2_STRIP12_DE_ENERGY -0.0887056 0.0135675 -PISTA_T2_STRIP13_DE_ENERGY -0.18718 0.0134042 -PISTA_T2_STRIP14_DE_ENERGY -0.0833794 0.0135192 -PISTA_T2_STRIP15_DE_ENERGY -0.285721 0.0136814 -PISTA_T2_STRIP16_DE_ENERGY -0.0487642 0.0133923 -PISTA_T2_STRIP17_DE_ENERGY -0.239061 0.0133906 -PISTA_T2_STRIP18_DE_ENERGY -0.1215 0.0134644 -PISTA_T2_STRIP19_DE_ENERGY -0.244542 0.0135102 -PISTA_T2_STRIP20_DE_ENERGY -0.00204068 0.0134759 -PISTA_T2_STRIP21_DE_ENERGY -0.232614 0.0134308 -PISTA_T2_STRIP22_DE_ENERGY -0.0641989 0.0136298 -PISTA_T2_STRIP23_DE_ENERGY -0.239599 0.0133886 -PISTA_T2_STRIP24_DE_ENERGY -0.0613334 0.0134979 -PISTA_T2_STRIP25_DE_ENERGY -0.23833 0.0134012 -PISTA_T2_STRIP26_DE_ENERGY -0.098282 0.0138172 -PISTA_T2_STRIP27_DE_ENERGY -0.196153 0.0135037 -PISTA_T2_STRIP28_DE_ENERGY -0.106563 0.0134961 -PISTA_T2_STRIP29_DE_ENERGY -0.220664 0.0134216 -PISTA_T2_STRIP30_DE_ENERGY -0.108029 0.0136681 -PISTA_T2_STRIP31_DE_ENERGY -0.250614 0.0135632 -PISTA_T2_STRIP32_DE_ENERGY -0.118003 0.013621 -PISTA_T2_STRIP33_DE_ENERGY 0.0256867 0.0135741 -PISTA_T2_STRIP34_DE_ENERGY -0.304317 0.0137383 -PISTA_T2_STRIP35_DE_ENERGY -0.0312558 0.013809 -PISTA_T2_STRIP36_DE_ENERGY -0.221107 0.0135235 -PISTA_T2_STRIP37_DE_ENERGY -0.0247204 0.0135664 -PISTA_T2_STRIP38_DE_ENERGY -0.225374 0.0137297 -PISTA_T2_STRIP39_DE_ENERGY -0.121538 0.0137427 -PISTA_T2_STRIP40_DE_ENERGY -0.241371 0.0135639 -PISTA_T2_STRIP41_DE_ENERGY 0.041518 0.0133674 -PISTA_T2_STRIP42_DE_ENERGY -0.213591 0.0134866 -PISTA_T2_STRIP43_DE_ENERGY -0.065009 0.013712 -PISTA_T2_STRIP44_DE_ENERGY -0.288303 0.0134861 -PISTA_T2_STRIP45_DE_ENERGY -0.0203544 0.0136189 -PISTA_T2_STRIP46_DE_ENERGY -0.268265 0.0134543 -PISTA_T2_STRIP47_DE_ENERGY -0.0480641 0.0137162 -PISTA_T2_STRIP48_DE_ENERGY -0.257903 0.0135897 -PISTA_T2_STRIP49_DE_ENERGY -0.0183902 0.0135016 -PISTA_T2_STRIP50_DE_ENERGY -0.255997 0.0135518 -PISTA_T2_STRIP51_DE_ENERGY -0.0876454 0.0138607 -PISTA_T2_STRIP52_DE_ENERGY -0.300305 0.0135534 -PISTA_T2_STRIP53_DE_ENERGY 0.0262659 0.0136777 -PISTA_T2_STRIP54_DE_ENERGY -0.219297 0.0135669 -PISTA_T2_STRIP55_DE_ENERGY -0.157249 0.0138695 -PISTA_T2_STRIP56_DE_ENERGY -0.238524 0.013516 -PISTA_T2_STRIP57_DE_ENERGY -0.0311295 0.0136041 -PISTA_T2_STRIP58_DE_ENERGY -0.308228 0.0137002 -PISTA_T2_STRIP59_DE_ENERGY -0.0231119 0.0137958 -PISTA_T2_STRIP60_DE_ENERGY -0.244793 0.0137606 -PISTA_T2_STRIP61_DE_ENERGY -0.0583124 0.0135718 -PISTA_T2_STRIP62_DE_ENERGY -0.206663 0.0136314 -PISTA_T2_STRIP63_DE_ENERGY -0.0064593 0.0138657 -PISTA_T2_STRIP64_DE_ENERGY -0.200085 0.0137068 -PISTA_T2_STRIP65_DE_ENERGY -0.210781 0.0137086 -PISTA_T2_STRIP66_DE_ENERGY -0.0288589 0.013782 -PISTA_T2_STRIP67_DE_ENERGY -0.233855 0.0137648 -PISTA_T2_STRIP68_DE_ENERGY -0.108367 0.0136709 -PISTA_T2_STRIP69_DE_ENERGY -0.197119 0.0139318 -PISTA_T2_STRIP70_DE_ENERGY -0.0458603 0.0137385 -PISTA_T2_STRIP71_DE_ENERGY -0.287327 0.0137374 -PISTA_T2_STRIP72_DE_ENERGY -0.0874751 0.0136565 -PISTA_T2_STRIP73_DE_ENERGY -0.264315 0.0137766 -PISTA_T2_STRIP74_DE_ENERGY -0.0692879 0.013803 -PISTA_T2_STRIP75_DE_ENERGY -0.240198 0.0136605 -PISTA_T2_STRIP76_DE_ENERGY -0.0824505 0.0136602 -PISTA_T2_STRIP77_DE_ENERGY -0.31501 0.0137166 -PISTA_T2_STRIP78_DE_ENERGY -0.0948103 0.0139326 -PISTA_T2_STRIP79_DE_ENERGY -0.26551 0.0139024 -PISTA_T2_STRIP80_DE_ENERGY -0.0868516 0.0137435 -PISTA_T2_STRIP81_DE_ENERGY -0.260378 0.0137554 -PISTA_T2_STRIP82_DE_ENERGY 0.0101662 0.0136911 -PISTA_T2_STRIP83_DE_ENERGY -0.241257 0.0137508 -PISTA_T2_STRIP84_DE_ENERGY -0.0265594 0.0137107 -PISTA_T2_STRIP85_DE_ENERGY -0.240185 0.0136967 -PISTA_T2_STRIP86_DE_ENERGY -0.0445712 0.0137745 -PISTA_T2_STRIP87_DE_ENERGY -0.291123 0.0138441 -PISTA_T2_STRIP88_DE_ENERGY -0.0466566 0.0136806 -PISTA_T2_STRIP89_DE_ENERGY -0.260336 0.0136742 -PISTA_T2_STRIP90_DE_ENERGY -0.0795464 0.0138571 -PISTA_T2_STRIP91_DE_ENERGY -0.202588 0.0139302 +PISTA_T2_STRIP1_DE_ENERGY -0.37216 0.0135322 +PISTA_T2_STRIP2_DE_ENERGY -0.230704 0.0136354 +PISTA_T2_STRIP3_DE_ENERGY -0.390613 0.0136874 +PISTA_T2_STRIP4_DE_ENERGY -0.236461 0.0136675 +PISTA_T2_STRIP5_DE_ENERGY -0.358379 0.0134863 +PISTA_T2_STRIP6_DE_ENERGY -0.194065 0.0136798 +PISTA_T2_STRIP7_DE_ENERGY -0.460968 0.013751 +PISTA_T2_STRIP8_DE_ENERGY -0.236444 0.0136381 +PISTA_T2_STRIP9_DE_ENERGY -0.405208 0.0136461 +PISTA_T2_STRIP10_DE_ENERGY -0.186307 0.0136826 +PISTA_T2_STRIP11_DE_ENERGY -0.374178 0.0135724 +PISTA_T2_STRIP12_DE_ENERGY -0.22704 0.0137136 +PISTA_T2_STRIP13_DE_ENERGY -0.326585 0.0135485 +PISTA_T2_STRIP14_DE_ENERGY -0.22167 0.0136648 +PISTA_T2_STRIP15_DE_ENERGY -0.426192 0.0138288 +PISTA_T2_STRIP16_DE_ENERGY -0.186703 0.0135366 +PISTA_T2_STRIP17_DE_ENERGY -0.379043 0.0135348 +PISTA_T2_STRIP18_DE_ENERGY -0.260192 0.0136094 +PISTA_T2_STRIP19_DE_ENERGY -0.384572 0.0136557 +PISTA_T2_STRIP20_DE_ENERGY -0.139455 0.0136211 +PISTA_T2_STRIP21_DE_ENERGY -0.372525 0.0135755 +PISTA_T2_STRIP22_DE_ENERGY -0.202259 0.0137766 +PISTA_T2_STRIP23_DE_ENERGY -0.379567 0.0135328 +PISTA_T2_STRIP24_DE_ENERGY -0.199373 0.0136433 +PISTA_T2_STRIP25_DE_ENERGY -0.378308 0.0135456 +PISTA_T2_STRIP26_DE_ENERGY -0.236745 0.0139661 +PISTA_T2_STRIP27_DE_ENERGY -0.335638 0.0136492 +PISTA_T2_STRIP28_DE_ENERGY -0.245074 0.0136414 +PISTA_T2_STRIP29_DE_ENERGY -0.360465 0.0135663 +PISTA_T2_STRIP30_DE_ENERGY -0.246617 0.0138154 +PISTA_T2_STRIP31_DE_ENERGY -0.390682 0.0137092 +PISTA_T2_STRIP32_DE_ENERGY -0.256642 0.0137676 +PISTA_T2_STRIP33_DE_ENERGY -0.1114 0.0137202 +PISTA_T2_STRIP34_DE_ENERGY -0.444989 0.0138863 +PISTA_T2_STRIP35_DE_ENERGY -0.168998 0.0139578 +PISTA_T2_STRIP36_DE_ENERGY -0.360866 0.0136691 +PISTA_T2_STRIP37_DE_ENERGY -0.16241 0.0137126 +PISTA_T2_STRIP38_DE_ENERGY -0.365185 0.0138775 +PISTA_T2_STRIP39_DE_ENERGY -0.260248 0.0138908 +PISTA_T2_STRIP40_DE_ENERGY -0.381353 0.0137099 +PISTA_T2_STRIP41_DE_ENERGY -0.09542 0.0135114 +PISTA_T2_STRIP42_DE_ENERGY -0.353273 0.0136319 +PISTA_T2_STRIP43_DE_ENERGY -0.203086 0.0138596 +PISTA_T2_STRIP44_DE_ENERGY -0.42876 0.0136313 +PISTA_T2_STRIP45_DE_ENERGY -0.157938 0.0137656 +PISTA_T2_STRIP46_DE_ENERGY -0.408552 0.0135992 +PISTA_T2_STRIP47_DE_ENERGY -0.185982 0.013864 +PISTA_T2_STRIP48_DE_ENERGY -0.398091 0.0137362 +PISTA_T2_STRIP49_DE_ENERGY -0.156006 0.0136471 +PISTA_T2_STRIP50_DE_ENERGY -0.396127 0.0136978 +PISTA_T2_STRIP51_DE_ENERGY -0.226018 0.0140101 +PISTA_T2_STRIP52_DE_ENERGY -0.440941 0.0136994 +PISTA_T2_STRIP53_DE_ENERGY -0.110848 0.0138251 +PISTA_T2_STRIP54_DE_ENERGY -0.359072 0.013713 +PISTA_T2_STRIP55_DE_ENERGY -0.296374 0.014019 +PISTA_T2_STRIP56_DE_ENERGY -0.378479 0.0136615 +PISTA_T2_STRIP57_DE_ENERGY -0.16887 0.0137507 +PISTA_T2_STRIP58_DE_ENERGY -0.449006 0.0138479 +PISTA_T2_STRIP59_DE_ENERGY -0.160716 0.0139443 +PISTA_T2_STRIP60_DE_ENERGY -0.384817 0.0139088 +PISTA_T2_STRIP61_DE_ENERGY -0.196307 0.0137179 +PISTA_T2_STRIP62_DE_ENERGY -0.346338 0.0137784 +PISTA_T2_STRIP63_DE_ENERGY -0.143924 0.014015 +PISTA_T2_STRIP64_DE_ENERGY -0.339663 0.0138545 +PISTA_T2_STRIP65_DE_ENERGY -0.350465 0.0138563 +PISTA_T2_STRIP66_DE_ENERGY -0.166588 0.0139305 +PISTA_T2_STRIP67_DE_ENERGY -0.373771 0.0139131 +PISTA_T2_STRIP68_DE_ENERGY -0.246915 0.0138181 +PISTA_T2_STRIP69_DE_ENERGY -0.336628 0.0140819 +PISTA_T2_STRIP70_DE_ENERGY -0.183733 0.0138865 +PISTA_T2_STRIP71_DE_ENERGY -0.427793 0.0138853 +PISTA_T2_STRIP72_DE_ENERGY -0.225798 0.0138036 +PISTA_T2_STRIP73_DE_ENERGY -0.404567 0.013925 +PISTA_T2_STRIP74_DE_ENERGY -0.207428 0.0139517 +PISTA_T2_STRIP75_DE_ENERGY -0.380215 0.0138078 +PISTA_T2_STRIP76_DE_ENERGY -0.220718 0.0138073 +PISTA_T2_STRIP77_DE_ENERGY -0.455784 0.0138643 +PISTA_T2_STRIP78_DE_ENERGY -0.233244 0.0140827 +PISTA_T2_STRIP79_DE_ENERGY -0.405736 0.0140521 +PISTA_T2_STRIP80_DE_ENERGY -0.225161 0.0138915 +PISTA_T2_STRIP81_DE_ENERGY -0.400576 0.0139035 +PISTA_T2_STRIP82_DE_ENERGY -0.127099 0.0138386 +PISTA_T2_STRIP83_DE_ENERGY -0.381242 0.0138989 +PISTA_T2_STRIP84_DE_ENERGY -0.164231 0.0138583 +PISTA_T2_STRIP85_DE_ENERGY -0.380142 0.0138442 +PISTA_T2_STRIP86_DE_ENERGY -0.182423 0.0139228 +PISTA_T2_STRIP87_DE_ENERGY -0.431663 0.0139933 +PISTA_T2_STRIP88_DE_ENERGY -0.184566 0.013828 +PISTA_T2_STRIP89_DE_ENERGY -0.400516 0.0138215 +PISTA_T2_STRIP90_DE_ENERGY -0.217794 0.0140063 +PISTA_T2_STRIP91_DE_ENERGY -0.342108 0.0140801 diff --git a/Projects/e850/Calibration/Energy/PISTA3_DE.cal b/Projects/e850/Calibration/Energy/PISTA3_DE.cal index 7fad543bd9873279f78673a2241488291ca5ab25..9d278a9910e2667378d113d6cbbc8de52282eb01 100644 --- a/Projects/e850/Calibration/Energy/PISTA3_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA3_DE.cal @@ -1,83 +1,83 @@ -PISTA_T3_STRIP1_DE_ENERGY 0.0516834 0.013317 -PISTA_T3_STRIP2_DE_ENERGY -0.251571 0.0135262 -PISTA_T3_STRIP3_DE_ENERGY -0.0442626 0.0137394 -PISTA_T3_STRIP4_DE_ENERGY -0.26915 0.0133672 -PISTA_T3_STRIP5_DE_ENERGY 0.0164092 0.0134575 -PISTA_T3_STRIP6_DE_ENERGY -0.292555 0.0134617 -PISTA_T3_STRIP7_DE_ENERGY -0.114284 0.0137624 -PISTA_T3_STRIP8_DE_ENERGY -0.27502 0.0134339 -PISTA_T3_STRIP9_DE_ENERGY -0.0410372 0.0135319 -PISTA_T3_STRIP10_DE_ENERGY -0.240277 0.0135482 -PISTA_T3_STRIP11_DE_ENERGY -0.123171 0.0137229 -PISTA_T3_STRIP12_DE_ENERGY -0.23684 0.0136009 -PISTA_T3_STRIP13_DE_ENERGY -0.0422099 0.0134667 -PISTA_T3_STRIP14_DE_ENERGY -0.308614 0.013559 -PISTA_T3_STRIP15_DE_ENERGY -0.0306686 0.0137153 -PISTA_T3_STRIP16_DE_ENERGY -0.202681 0.0134563 -PISTA_T3_STRIP17_DE_ENERGY -0.0577481 0.0133423 -PISTA_T3_STRIP18_DE_ENERGY -0.271314 0.0134684 -PISTA_T3_STRIP19_DE_ENERGY -0.070208 0.0136923 -PISTA_T3_STRIP20_DE_ENERGY -0.245467 0.0136625 -PISTA_T3_STRIP21_DE_ENERGY -0.0721169 0.0133943 -PISTA_T3_STRIP22_DE_ENERGY -0.289248 0.0136067 -PISTA_T3_STRIP23_DE_ENERGY -0.0789992 0.013737 -PISTA_T3_STRIP24_DE_ENERGY -0.179084 0.0136371 -PISTA_T3_STRIP25_DE_ENERGY 0.00405687 0.0133548 -PISTA_T3_STRIP26_DE_ENERGY -0.223714 0.0135383 -PISTA_T3_STRIP27_DE_ENERGY -0.0938247 0.0138086 -PISTA_T3_STRIP28_DE_ENERGY -0.220166 0.0136909 -PISTA_T3_STRIP29_DE_ENERGY -0.00500164 0.0135168 -PISTA_T3_STRIP30_DE_ENERGY -0.275541 0.0136368 -PISTA_T3_STRIP31_DE_ENERGY -0.0683968 0.0138632 -PISTA_T3_STRIP32_DE_ENERGY -0.230223 0.013665 +PISTA_T3_STRIP1_DE_ENERGY -0.0851276 0.0134604 +PISTA_T3_STRIP2_DE_ENERGY -0.391639 0.0136718 +PISTA_T3_STRIP3_DE_ENERGY -0.182108 0.0138874 +PISTA_T3_STRIP4_DE_ENERGY -0.409443 0.0135112 +PISTA_T3_STRIP5_DE_ENERGY -0.120798 0.0136025 +PISTA_T3_STRIP6_DE_ENERGY -0.433105 0.0136067 +PISTA_T3_STRIP7_DE_ENERGY -0.252949 0.0139107 +PISTA_T3_STRIP8_DE_ENERGY -0.415362 0.0135786 +PISTA_T3_STRIP9_DE_ENERGY -0.178889 0.0136777 +PISTA_T3_STRIP10_DE_ENERGY -0.380255 0.0136941 +PISTA_T3_STRIP11_DE_ENERGY -0.261877 0.0138707 +PISTA_T3_STRIP12_DE_ENERGY -0.376803 0.0137475 +PISTA_T3_STRIP13_DE_ENERGY -0.180054 0.0136118 +PISTA_T3_STRIP14_DE_ENERGY -0.449313 0.013705 +PISTA_T3_STRIP15_DE_ENERGY -0.16836 0.0138629 +PISTA_T3_STRIP16_DE_ENERGY -0.342248 0.0136013 +PISTA_T3_STRIP17_DE_ENERGY -0.195812 0.0134861 +PISTA_T3_STRIP18_DE_ENERGY -0.411657 0.0136135 +PISTA_T3_STRIP19_DE_ENERGY -0.208372 0.0138398 +PISTA_T3_STRIP20_DE_ENERGY -0.385513 0.0138097 +PISTA_T3_STRIP21_DE_ENERGY -0.210274 0.0135386 +PISTA_T3_STRIP22_DE_ENERGY -0.42975 0.0137532 +PISTA_T3_STRIP23_DE_ENERGY -0.217263 0.013885 +PISTA_T3_STRIP24_DE_ENERGY -0.318371 0.0137839 +PISTA_T3_STRIP25_DE_ENERGY -0.133255 0.0134985 +PISTA_T3_STRIP26_DE_ENERGY -0.363509 0.0136842 +PISTA_T3_STRIP27_DE_ENERGY -0.232229 0.0139574 +PISTA_T3_STRIP28_DE_ENERGY -0.359884 0.0138382 +PISTA_T3_STRIP29_DE_ENERGY -0.142467 0.0136624 +PISTA_T3_STRIP30_DE_ENERGY -0.415897 0.0137837 +PISTA_T3_STRIP31_DE_ENERGY -0.20651 0.0140125 +PISTA_T3_STRIP32_DE_ENERGY -0.370076 0.0138122 PISTA_T3_STRIP33_DE_ENERGY 0 1 -PISTA_T3_STRIP34_DE_ENERGY -0.0847786 0.0136693 -PISTA_T3_STRIP35_DE_ENERGY -0.295915 0.013656 -PISTA_T3_STRIP36_DE_ENERGY -0.0445333 0.0135856 +PISTA_T3_STRIP34_DE_ENERGY -0.223044 0.0138164 +PISTA_T3_STRIP35_DE_ENERGY -0.436472 0.0138031 +PISTA_T3_STRIP36_DE_ENERGY -0.182392 0.0137319 PISTA_T3_STRIP37_DE_ENERGY 0 1 -PISTA_T3_STRIP38_DE_ENERGY -0.0978223 0.0137525 -PISTA_T3_STRIP39_DE_ENERGY -0.25326 0.0138484 -PISTA_T3_STRIP40_DE_ENERGY -0.022197 0.0135657 +PISTA_T3_STRIP38_DE_ENERGY -0.236249 0.0139006 +PISTA_T3_STRIP39_DE_ENERGY -0.393388 0.0139976 +PISTA_T3_STRIP40_DE_ENERGY -0.159779 0.0137117 PISTA_T3_STRIP41_DE_ENERGY 0 1 -PISTA_T3_STRIP42_DE_ENERGY -0.116751 0.013778 -PISTA_T3_STRIP43_DE_ENERGY -0.269928 0.0135983 -PISTA_T3_STRIP44_DE_ENERGY 0.0486799 0.0135462 +PISTA_T3_STRIP42_DE_ENERGY -0.255352 0.0139262 +PISTA_T3_STRIP43_DE_ENERGY -0.410236 0.0137448 +PISTA_T3_STRIP44_DE_ENERGY -0.0881495 0.013692 PISTA_T3_STRIP45_DE_ENERGY 0 1 -PISTA_T3_STRIP46_DE_ENERGY -0.0652609 0.0137176 -PISTA_T3_STRIP47_DE_ENERGY -0.255213 0.0135644 -PISTA_T3_STRIP48_DE_ENERGY -0.0489254 0.0136095 +PISTA_T3_STRIP46_DE_ENERGY -0.203293 0.0138652 +PISTA_T3_STRIP47_DE_ENERGY -0.39533 0.0137105 +PISTA_T3_STRIP48_DE_ENERGY -0.186795 0.013756 PISTA_T3_STRIP49_DE_ENERGY 0 1 -PISTA_T3_STRIP50_DE_ENERGY -0.041769 0.0137519 -PISTA_T3_STRIP51_DE_ENERGY -0.237097 0.0135902 +PISTA_T3_STRIP50_DE_ENERGY -0.179579 0.0139 +PISTA_T3_STRIP51_DE_ENERGY -0.377005 0.0137365 PISTA_T3_STRIP52_DE_ENERGY 0 1 PISTA_T3_STRIP53_DE_ENERGY 0 1 -PISTA_T3_STRIP54_DE_ENERGY -0.080205 0.0136638 +PISTA_T3_STRIP54_DE_ENERGY -0.218406 0.0138108 PISTA_T3_STRIP55_DE_ENERGY 0 1 PISTA_T3_STRIP56_DE_ENERGY 0 1 PISTA_T3_STRIP57_DE_ENERGY 0 1 -PISTA_T3_STRIP58_DE_ENERGY -0.0833937 0.0137554 +PISTA_T3_STRIP58_DE_ENERGY -0.221618 0.0139034 PISTA_T3_STRIP59_DE_ENERGY 0 1 PISTA_T3_STRIP60_DE_ENERGY 0 1 -PISTA_T3_STRIP61_DE_ENERGY -0.190496 0.0135348 +PISTA_T3_STRIP61_DE_ENERGY -0.329899 0.0136805 PISTA_T3_STRIP62_DE_ENERGY 0 1 PISTA_T3_STRIP63_DE_ENERGY 0 1 PISTA_T3_STRIP64_DE_ENERGY 0 1 PISTA_T3_STRIP65_DE_ENERGY 0 1 -PISTA_T3_STRIP66_DE_ENERGY -0.19857 0.0135849 -PISTA_T3_STRIP67_DE_ENERGY -0.0726037 0.0138636 -PISTA_T3_STRIP68_DE_ENERGY -0.294504 0.0136474 +PISTA_T3_STRIP66_DE_ENERGY -0.338066 0.0137312 +PISTA_T3_STRIP67_DE_ENERGY -0.210744 0.0140129 +PISTA_T3_STRIP68_DE_ENERGY -0.435018 0.0137943 PISTA_T3_STRIP69_DE_ENERGY 0 1 -PISTA_T3_STRIP70_DE_ENERGY -0.248988 0.0137249 -PISTA_T3_STRIP71_DE_ENERGY -0.117978 0.0139001 -PISTA_T3_STRIP72_DE_ENERGY -0.197887 0.0137644 -PISTA_T3_STRIP73_DE_ENERGY -0.020044 0.0136231 -PISTA_T3_STRIP74_DE_ENERGY -0.26287 0.0136651 -PISTA_T3_STRIP75_DE_ENERGY -0.0452413 0.0137189 -PISTA_T3_STRIP76_DE_ENERGY -0.244356 0.0136675 +PISTA_T3_STRIP70_DE_ENERGY -0.389041 0.0138727 +PISTA_T3_STRIP71_DE_ENERGY -0.25664 0.0140498 +PISTA_T3_STRIP72_DE_ENERGY -0.337385 0.0139126 +PISTA_T3_STRIP73_DE_ENERGY -0.157658 0.0137698 +PISTA_T3_STRIP74_DE_ENERGY -0.403083 0.0138123 +PISTA_T3_STRIP75_DE_ENERGY -0.183125 0.0138666 +PISTA_T3_STRIP76_DE_ENERGY -0.384338 0.0138146 PISTA_T3_STRIP77_DE_ENERGY 0 1 PISTA_T3_STRIP78_DE_ENERGY 0 1 -PISTA_T3_STRIP79_DE_ENERGY -0.115448 0.0139761 -PISTA_T3_STRIP80_DE_ENERGY -0.231913 0.0137384 +PISTA_T3_STRIP79_DE_ENERGY -0.254048 0.0141265 +PISTA_T3_STRIP80_DE_ENERGY -0.371754 0.0138863 PISTA_T3_STRIP81_DE_ENERGY 0 1 PISTA_T3_STRIP82_DE_ENERGY 0 1 PISTA_T3_STRIP83_DE_ENERGY 0 1 diff --git a/Projects/e850/Calibration/Energy/PISTA4_DE.cal b/Projects/e850/Calibration/Energy/PISTA4_DE.cal index ce79b7340f1b178d3254184eca2c9fce7dc1a860..7cf3011768a8b01f55364c333fa6864aa3da7eec 100644 --- a/Projects/e850/Calibration/Energy/PISTA4_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA4_DE.cal @@ -1,91 +1,91 @@ -PISTA_T4_STRIP1_DE_ENERGY -0.218929 0.0132333 -PISTA_T4_STRIP2_DE_ENERGY -0.0581346 0.0135573 -PISTA_T4_STRIP3_DE_ENERGY -0.263383 0.0135692 -PISTA_T4_STRIP4_DE_ENERGY -0.0911878 0.0134083 -PISTA_T4_STRIP5_DE_ENERGY -0.242611 0.0133633 -PISTA_T4_STRIP6_DE_ENERGY 0.0393402 0.0134744 -PISTA_T4_STRIP7_DE_ENERGY -0.251524 0.0135012 -PISTA_T4_STRIP8_DE_ENERGY 0.0537649 0.0132516 -PISTA_T4_STRIP9_DE_ENERGY -0.180078 0.0133584 -PISTA_T4_STRIP10_DE_ENERGY -0.0436698 0.0136044 -PISTA_T4_STRIP11_DE_ENERGY -0.248577 0.0134084 -PISTA_T4_STRIP12_DE_ENERGY 0.00388765 0.0133087 -PISTA_T4_STRIP13_DE_ENERGY -0.151275 0.0132796 -PISTA_T4_STRIP14_DE_ENERGY -0.0723656 0.013659 -PISTA_T4_STRIP15_DE_ENERGY -0.275733 0.013562 -PISTA_T4_STRIP16_DE_ENERGY 0.0160425 0.0133722 -PISTA_T4_STRIP17_DE_ENERGY -0.209824 0.0134252 -PISTA_T4_STRIP18_DE_ENERGY -0.0285003 0.0135641 -PISTA_T4_STRIP19_DE_ENERGY -0.235462 0.013426 -PISTA_T4_STRIP20_DE_ENERGY -0.0326803 0.0136008 -PISTA_T4_STRIP21_DE_ENERGY -0.241482 0.0134178 -PISTA_T4_STRIP22_DE_ENERGY 0.0166865 0.0135844 -PISTA_T4_STRIP23_DE_ENERGY -0.234821 0.0135371 -PISTA_T4_STRIP24_DE_ENERGY -0.0419219 0.0136912 -PISTA_T4_STRIP25_DE_ENERGY -0.226539 0.0133029 -PISTA_T4_STRIP26_DE_ENERGY -0.103745 0.0137182 -PISTA_T4_STRIP27_DE_ENERGY -0.206406 0.0136436 -PISTA_T4_STRIP28_DE_ENERGY 0.0118614 0.0133632 -PISTA_T4_STRIP29_DE_ENERGY -0.255025 0.0135427 -PISTA_T4_STRIP30_DE_ENERGY -0.136366 0.0138126 -PISTA_T4_STRIP31_DE_ENERGY -0.212697 0.0136598 -PISTA_T4_STRIP32_DE_ENERGY 0.0712184 0.0135138 -PISTA_T4_STRIP33_DE_ENERGY -0.0251949 0.0135283 -PISTA_T4_STRIP34_DE_ENERGY -0.286097 0.0136093 -PISTA_T4_STRIP35_DE_ENERGY -0.024576 0.0137055 -PISTA_T4_STRIP36_DE_ENERGY -0.32042 0.0134757 -PISTA_T4_STRIP37_DE_ENERGY -0.0236682 0.0135332 -PISTA_T4_STRIP38_DE_ENERGY -0.27761 0.0134504 -PISTA_T4_STRIP39_DE_ENERGY -0.0126229 0.01358 -PISTA_T4_STRIP40_DE_ENERGY -0.266446 0.0134208 -PISTA_T4_STRIP41_DE_ENERGY -0.0705577 0.0134475 -PISTA_T4_STRIP42_DE_ENERGY -0.271948 0.0134985 -PISTA_T4_STRIP43_DE_ENERGY -0.0593346 0.0136144 -PISTA_T4_STRIP44_DE_ENERGY -0.290711 0.0136033 -PISTA_T4_STRIP45_DE_ENERGY 0.0379028 0.0135864 -PISTA_T4_STRIP46_DE_ENERGY -0.264911 0.0135888 -PISTA_T4_STRIP47_DE_ENERGY -0.0577016 0.0136511 -PISTA_T4_STRIP48_DE_ENERGY -0.247812 0.0135087 -PISTA_T4_STRIP49_DE_ENERGY 0.0125731 0.0135717 -PISTA_T4_STRIP50_DE_ENERGY -0.284568 0.0136012 -PISTA_T4_STRIP51_DE_ENERGY -0.0626318 0.0137323 -PISTA_T4_STRIP52_DE_ENERGY -0.272293 0.0137329 -PISTA_T4_STRIP53_DE_ENERGY 0.0555977 0.0135949 -PISTA_T4_STRIP54_DE_ENERGY -0.281635 0.0136739 -PISTA_T4_STRIP55_DE_ENERGY -0.0901791 0.0137721 -PISTA_T4_STRIP56_DE_ENERGY -0.263065 0.0135173 -PISTA_T4_STRIP57_DE_ENERGY 0.0379714 0.013511 -PISTA_T4_STRIP58_DE_ENERGY -0.288832 0.0137957 -PISTA_T4_STRIP59_DE_ENERGY -0.0639766 0.0139472 -PISTA_T4_STRIP60_DE_ENERGY -0.275641 0.0136584 -PISTA_T4_STRIP61_DE_ENERGY -0.0538629 0.01363 -PISTA_T4_STRIP62_DE_ENERGY -0.236461 0.0137251 -PISTA_T4_STRIP63_DE_ENERGY -0.057199 0.0138921 -PISTA_T4_STRIP64_DE_ENERGY -0.142974 0.0137291 -PISTA_T4_STRIP65_DE_ENERGY -0.302393 0.0138388 -PISTA_T4_STRIP66_DE_ENERGY -0.0161398 0.0138021 -PISTA_T4_STRIP67_DE_ENERGY -0.217453 0.0137484 -PISTA_T4_STRIP68_DE_ENERGY -0.0105419 0.013596 -PISTA_T4_STRIP69_DE_ENERGY -0.196568 0.0137642 -PISTA_T4_STRIP70_DE_ENERGY -0.0194976 0.013791 -PISTA_T4_STRIP71_DE_ENERGY -0.234517 0.0136409 -PISTA_T4_STRIP72_DE_ENERGY 0.0121956 0.0136465 -PISTA_T4_STRIP73_DE_ENERGY -0.219585 0.0136432 -PISTA_T4_STRIP74_DE_ENERGY -0.071446 0.0137849 -PISTA_T4_STRIP75_DE_ENERGY -0.262642 0.0136675 -PISTA_T4_STRIP76_DE_ENERGY -0.0592451 0.0137527 -PISTA_T4_STRIP77_DE_ENERGY -0.267819 0.0137527 -PISTA_T4_STRIP78_DE_ENERGY -0.0300517 0.0138334 -PISTA_T4_STRIP79_DE_ENERGY -0.271338 0.0137852 -PISTA_T4_STRIP80_DE_ENERGY -0.025111 0.0135859 -PISTA_T4_STRIP81_DE_ENERGY -0.267208 0.0135356 -PISTA_T4_STRIP82_DE_ENERGY -0.0662129 0.0136867 -PISTA_T4_STRIP83_DE_ENERGY -0.255616 0.0138142 -PISTA_T4_STRIP84_DE_ENERGY -0.0328784 0.0135386 -PISTA_T4_STRIP85_DE_ENERGY -0.263241 0.0137476 -PISTA_T4_STRIP86_DE_ENERGY -0.0673877 0.0138578 -PISTA_T4_STRIP87_DE_ENERGY -0.243537 0.0136937 -PISTA_T4_STRIP88_DE_ENERGY 0.00747218 0.0136927 -PISTA_T4_STRIP89_DE_ENERGY -0.214127 0.0135767 -PISTA_T4_STRIP90_DE_ENERGY -0.0550125 0.0136731 -PISTA_T4_STRIP91_DE_ENERGY -0.211415 0.0137264 +PISTA_T4_STRIP1_DE_ENERGY -0.35869 0.0133759 +PISTA_T4_STRIP2_DE_ENERGY -0.196131 0.0137033 +PISTA_T4_STRIP3_DE_ENERGY -0.403584 0.0137153 +PISTA_T4_STRIP4_DE_ENERGY -0.229558 0.0135527 +PISTA_T4_STRIP5_DE_ENERGY -0.382651 0.0135073 +PISTA_T4_STRIP6_DE_ENERGY -0.0976158 0.0136195 +PISTA_T4_STRIP7_DE_ENERGY -0.391595 0.0136465 +PISTA_T4_STRIP8_DE_ENERGY -0.0829951 0.0133942 +PISTA_T4_STRIP9_DE_ENERGY -0.319429 0.0135024 +PISTA_T4_STRIP10_DE_ENERGY -0.18153 0.013751 +PISTA_T4_STRIP11_DE_ENERGY -0.388649 0.0135528 +PISTA_T4_STRIP12_DE_ENERGY -0.133463 0.013452 +PISTA_T4_STRIP13_DE_ENERGY -0.290295 0.0134227 +PISTA_T4_STRIP14_DE_ENERGY -0.210574 0.0138062 +PISTA_T4_STRIP15_DE_ENERGY -0.416067 0.013708 +PISTA_T4_STRIP16_DE_ENERGY -0.121163 0.0135162 +PISTA_T4_STRIP17_DE_ENERGY -0.34948 0.0135698 +PISTA_T4_STRIP18_DE_ENERGY -0.166182 0.0137102 +PISTA_T4_STRIP19_DE_ENERGY -0.375378 0.0135706 +PISTA_T4_STRIP20_DE_ENERGY -0.17042 0.0137473 +PISTA_T4_STRIP21_DE_ENERGY -0.381459 0.0135623 +PISTA_T4_STRIP22_DE_ENERGY -0.120543 0.0137307 +PISTA_T4_STRIP23_DE_ENERGY -0.374694 0.0136828 +PISTA_T4_STRIP24_DE_ENERGY -0.179755 0.0138386 +PISTA_T4_STRIP25_DE_ENERGY -0.366364 0.0134462 +PISTA_T4_STRIP26_DE_ENERGY -0.242253 0.0138659 +PISTA_T4_STRIP27_DE_ENERGY -0.346018 0.0137906 +PISTA_T4_STRIP28_DE_ENERGY -0.125383 0.0135071 +PISTA_T4_STRIP29_DE_ENERGY -0.395196 0.0136886 +PISTA_T4_STRIP30_DE_ENERGY -0.27523 0.0139614 +PISTA_T4_STRIP31_DE_ENERGY -0.352378 0.0138069 +PISTA_T4_STRIP32_DE_ENERGY -0.0653906 0.0136594 +PISTA_T4_STRIP33_DE_ENERGY -0.162826 0.013674 +PISTA_T4_STRIP34_DE_ENERGY -0.426576 0.0137559 +PISTA_T4_STRIP35_DE_ENERGY -0.162203 0.0138531 +PISTA_T4_STRIP36_DE_ENERGY -0.461266 0.0136208 +PISTA_T4_STRIP37_DE_ENERGY -0.161311 0.0136789 +PISTA_T4_STRIP38_DE_ENERGY -0.417956 0.0135952 +PISTA_T4_STRIP39_DE_ENERGY -0.150118 0.0137262 +PISTA_T4_STRIP40_DE_ENERGY -0.406693 0.0135653 +PISTA_T4_STRIP41_DE_ENERGY -0.208658 0.0135922 +PISTA_T4_STRIP42_DE_ENERGY -0.412244 0.0136438 +PISTA_T4_STRIP43_DE_ENERGY -0.19735 0.013761 +PISTA_T4_STRIP44_DE_ENERGY -0.431214 0.0137498 +PISTA_T4_STRIP45_DE_ENERGY -0.099055 0.0137327 +PISTA_T4_STRIP46_DE_ENERGY -0.405135 0.0137351 +PISTA_T4_STRIP47_DE_ENERGY -0.195723 0.0137981 +PISTA_T4_STRIP48_DE_ENERGY -0.387825 0.0136541 +PISTA_T4_STRIP49_DE_ENERGY -0.124655 0.0137178 +PISTA_T4_STRIP50_DE_ENERGY -0.425015 0.0137476 +PISTA_T4_STRIP51_DE_ENERGY -0.20069 0.0138802 +PISTA_T4_STRIP52_DE_ENERGY -0.412605 0.0138808 +PISTA_T4_STRIP53_DE_ENERGY -0.0811741 0.0137412 +PISTA_T4_STRIP54_DE_ENERGY -0.42207 0.0138212 +PISTA_T4_STRIP55_DE_ENERGY -0.228514 0.0139204 +PISTA_T4_STRIP56_DE_ENERGY -0.403272 0.0136629 +PISTA_T4_STRIP57_DE_ENERGY -0.0989863 0.0136565 +PISTA_T4_STRIP58_DE_ENERGY -0.429315 0.0139442 +PISTA_T4_STRIP59_DE_ENERGY -0.202021 0.0140974 +PISTA_T4_STRIP60_DE_ENERGY -0.415995 0.0138055 +PISTA_T4_STRIP61_DE_ENERGY -0.191833 0.0137769 +PISTA_T4_STRIP62_DE_ENERGY -0.376378 0.0138729 +PISTA_T4_STRIP63_DE_ENERGY -0.195178 0.0140416 +PISTA_T4_STRIP64_DE_ENERGY -0.281897 0.013877 +PISTA_T4_STRIP65_DE_ENERGY -0.442989 0.0139877 +PISTA_T4_STRIP66_DE_ENERGY -0.153706 0.0139508 +PISTA_T4_STRIP67_DE_ENERGY -0.357181 0.0138965 +PISTA_T4_STRIP68_DE_ENERGY -0.148042 0.0137424 +PISTA_T4_STRIP69_DE_ENERGY -0.336067 0.0139125 +PISTA_T4_STRIP70_DE_ENERGY -0.157071 0.0139395 +PISTA_T4_STRIP71_DE_ENERGY -0.374429 0.0137878 +PISTA_T4_STRIP72_DE_ENERGY -0.125038 0.0137934 +PISTA_T4_STRIP73_DE_ENERGY -0.359327 0.0137901 +PISTA_T4_STRIP74_DE_ENERGY -0.209607 0.0139334 +PISTA_T4_STRIP75_DE_ENERGY -0.402864 0.0138147 +PISTA_T4_STRIP76_DE_ENERGY -0.197262 0.0139008 +PISTA_T4_STRIP77_DE_ENERGY -0.408078 0.0139008 +PISTA_T4_STRIP78_DE_ENERGY -0.167756 0.0139824 +PISTA_T4_STRIP79_DE_ENERGY -0.411639 0.0139337 +PISTA_T4_STRIP80_DE_ENERGY -0.162773 0.0137323 +PISTA_T4_STRIP81_DE_ENERGY -0.407465 0.0136813 +PISTA_T4_STRIP82_DE_ENERGY -0.204309 0.0138341 +PISTA_T4_STRIP83_DE_ENERGY -0.395743 0.013963 +PISTA_T4_STRIP84_DE_ENERGY -0.170589 0.0136844 +PISTA_T4_STRIP85_DE_ENERGY -0.403457 0.0138956 +PISTA_T4_STRIP86_DE_ENERGY -0.205474 0.014007 +PISTA_T4_STRIP87_DE_ENERGY -0.38354 0.0138412 +PISTA_T4_STRIP88_DE_ENERGY -0.129834 0.0138401 +PISTA_T4_STRIP89_DE_ENERGY -0.353788 0.0137229 +PISTA_T4_STRIP90_DE_ENERGY -0.193033 0.0138205 +PISTA_T4_STRIP91_DE_ENERGY -0.351066 0.0138742 diff --git a/Projects/e850/Calibration/Energy/PISTA5_DE.cal b/Projects/e850/Calibration/Energy/PISTA5_DE.cal index 4653922c04b6c9115cb040e495d9953d1fa0d191..3f52b6d5c934e3f8c10a31c29ce32dd2b7d6aaa1 100644 --- a/Projects/e850/Calibration/Energy/PISTA5_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA5_DE.cal @@ -1,91 +1,91 @@ -PISTA_T5_STRIP1_DE_ENERGY 0.00828338 0.013317 -PISTA_T5_STRIP2_DE_ENERGY -0.240258 0.0134934 -PISTA_T5_STRIP3_DE_ENERGY -0.131869 0.0137857 -PISTA_T5_STRIP4_DE_ENERGY -0.232536 0.0132333 -PISTA_T5_STRIP5_DE_ENERGY -0.0291673 0.0135641 -PISTA_T5_STRIP6_DE_ENERGY -0.278217 0.0135664 -PISTA_T5_STRIP7_DE_ENERGY -0.0834901 0.0137198 -PISTA_T5_STRIP8_DE_ENERGY -0.255704 0.013467 -PISTA_T5_STRIP9_DE_ENERGY -0.0032973 0.0133697 -PISTA_T5_STRIP10_DE_ENERGY -0.303986 0.0134895 -PISTA_T5_STRIP11_DE_ENERGY -0.0875563 0.0135636 -PISTA_T5_STRIP12_DE_ENERGY -0.210376 0.0134729 -PISTA_T5_STRIP13_DE_ENERGY -0.0349054 0.013536 -PISTA_T5_STRIP14_DE_ENERGY -0.287971 0.013401 -PISTA_T5_STRIP15_DE_ENERGY -0.0189034 0.0136404 -PISTA_T5_STRIP16_DE_ENERGY -0.30408 0.0134413 -PISTA_T5_STRIP17_DE_ENERGY 0.0630896 0.0133802 -PISTA_T5_STRIP18_DE_ENERGY -0.277142 0.0134521 -PISTA_T5_STRIP19_DE_ENERGY -0.0897795 0.0137041 -PISTA_T5_STRIP20_DE_ENERGY -0.262566 0.0134496 -PISTA_T5_STRIP21_DE_ENERGY 0.0597156 0.0135065 -PISTA_T5_STRIP22_DE_ENERGY -0.227503 0.0133667 -PISTA_T5_STRIP23_DE_ENERGY -0.056738 0.0137529 -PISTA_T5_STRIP24_DE_ENERGY -0.203301 0.0134901 -PISTA_T5_STRIP25_DE_ENERGY 0.0601903 0.0135549 -PISTA_T5_STRIP26_DE_ENERGY -0.258907 0.013504 -PISTA_T5_STRIP27_DE_ENERGY -0.0538643 0.0137542 -PISTA_T5_STRIP28_DE_ENERGY -0.256891 0.0134973 -PISTA_T5_STRIP29_DE_ENERGY 0.012846 0.0135024 -PISTA_T5_STRIP30_DE_ENERGY -0.27991 0.0134216 -PISTA_T5_STRIP31_DE_ENERGY 0.0139023 0.0136525 -PISTA_T5_STRIP32_DE_ENERGY -0.252057 0.0134554 -PISTA_T5_STRIP33_DE_ENERGY -0.296554 0.0135455 -PISTA_T5_STRIP34_DE_ENERGY -0.0230671 0.0135179 -PISTA_T5_STRIP35_DE_ENERGY -0.288572 0.0136951 -PISTA_T5_STRIP36_DE_ENERGY -0.0300201 0.0134839 -PISTA_T5_STRIP37_DE_ENERGY -0.225141 0.0134508 -PISTA_T5_STRIP38_DE_ENERGY -0.0644772 0.0137696 -PISTA_T5_STRIP39_DE_ENERGY -0.183722 0.0136634 -PISTA_T5_STRIP40_DE_ENERGY -0.0800804 0.0136062 -PISTA_T5_STRIP41_DE_ENERGY -0.285919 0.0136377 -PISTA_T5_STRIP42_DE_ENERGY -0.0120335 0.0135945 -PISTA_T5_STRIP43_DE_ENERGY -0.298679 0.0136288 -PISTA_T5_STRIP44_DE_ENERGY -0.057735 0.0136218 -PISTA_T5_STRIP45_DE_ENERGY -0.210886 0.0135912 -PISTA_T5_STRIP46_DE_ENERGY -0.0385692 0.0137157 -PISTA_T5_STRIP47_DE_ENERGY -0.250303 0.0136474 -PISTA_T5_STRIP48_DE_ENERGY -0.0197745 0.0135665 -PISTA_T5_STRIP49_DE_ENERGY -0.206691 0.0135594 -PISTA_T5_STRIP50_DE_ENERGY -0.0333079 0.0136292 -PISTA_T5_STRIP51_DE_ENERGY -0.308796 0.0136507 -PISTA_T5_STRIP52_DE_ENERGY -0.0284609 0.0136723 -PISTA_T5_STRIP53_DE_ENERGY -0.238809 0.0134662 -PISTA_T5_STRIP54_DE_ENERGY -0.036326 0.0137883 -PISTA_T5_STRIP55_DE_ENERGY -0.267601 0.013687 -PISTA_T5_STRIP56_DE_ENERGY -0.0179096 0.0136452 -PISTA_T5_STRIP57_DE_ENERGY -0.255596 0.0135705 -PISTA_T5_STRIP58_DE_ENERGY -0.0632614 0.0136891 -PISTA_T5_STRIP59_DE_ENERGY -0.285603 0.0136984 -PISTA_T5_STRIP60_DE_ENERGY -0.0443007 0.0136432 -PISTA_T5_STRIP61_DE_ENERGY -0.200565 0.0136217 -PISTA_T5_STRIP62_DE_ENERGY -0.0356245 0.0136741 -PISTA_T5_STRIP63_DE_ENERGY -0.196184 0.0136528 -PISTA_T5_STRIP64_DE_ENERGY -0.00511542 0.0136468 -PISTA_T5_STRIP65_DE_ENERGY -0.0388953 0.0135156 -PISTA_T5_STRIP66_DE_ENERGY -0.278931 0.0135459 -PISTA_T5_STRIP67_DE_ENERGY -0.103035 0.013869 -PISTA_T5_STRIP68_DE_ENERGY -0.322445 0.0135374 -PISTA_T5_STRIP69_DE_ENERGY -0.0113347 0.0136493 -PISTA_T5_STRIP70_DE_ENERGY -0.212194 0.0135835 -PISTA_T5_STRIP71_DE_ENERGY -0.0726663 0.0137741 -PISTA_T5_STRIP72_DE_ENERGY -0.25627 0.0135389 -PISTA_T5_STRIP73_DE_ENERGY -0.0204916 0.0135402 -PISTA_T5_STRIP74_DE_ENERGY -0.200692 0.0135948 -PISTA_T5_STRIP75_DE_ENERGY -0.0300376 0.0136481 -PISTA_T5_STRIP76_DE_ENERGY -0.152322 0.0134962 -PISTA_T5_STRIP77_DE_ENERGY -0.0290652 0.0135324 -PISTA_T5_STRIP78_DE_ENERGY -0.3076 0.0135553 -PISTA_T5_STRIP79_DE_ENERGY -0.0469396 0.013847 -PISTA_T5_STRIP80_DE_ENERGY -0.227956 0.0136017 -PISTA_T5_STRIP81_DE_ENERGY -0.0289216 0.0136549 -PISTA_T5_STRIP82_DE_ENERGY -0.306454 0.0136445 -PISTA_T5_STRIP83_DE_ENERGY -0.00692968 0.0137817 -PISTA_T5_STRIP84_DE_ENERGY -0.318589 0.0136004 -PISTA_T5_STRIP85_DE_ENERGY 0.000205122 0.0135139 -PISTA_T5_STRIP86_DE_ENERGY -0.283332 0.0136681 -PISTA_T5_STRIP87_DE_ENERGY -0.0188815 0.0137922 -PISTA_T5_STRIP88_DE_ENERGY -0.316936 0.0135275 -PISTA_T5_STRIP89_DE_ENERGY -0.00118075 0.0135905 -PISTA_T5_STRIP90_DE_ENERGY -0.264663 0.0136422 -PISTA_T5_STRIP91_DE_ENERGY -0.0345475 0.0139692 +PISTA_T5_STRIP1_DE_ENERGY -0.129 0.0134603 +PISTA_T5_STRIP2_DE_ENERGY -0.380212 0.0136387 +PISTA_T5_STRIP3_DE_ENERGY -0.270669 0.0139341 +PISTA_T5_STRIP4_DE_ENERGY -0.372398 0.0133757 +PISTA_T5_STRIP5_DE_ENERGY -0.166871 0.0137102 +PISTA_T5_STRIP6_DE_ENERGY -0.418601 0.0137125 +PISTA_T5_STRIP7_DE_ENERGY -0.221784 0.0138676 +PISTA_T5_STRIP8_DE_ENERGY -0.395827 0.013612 +PISTA_T5_STRIP9_DE_ENERGY -0.14072 0.0135137 +PISTA_T5_STRIP10_DE_ENERGY -0.444619 0.0136347 +PISTA_T5_STRIP11_DE_ENERGY -0.225908 0.0137097 +PISTA_T5_STRIP12_DE_ENERGY -0.350023 0.013618 +PISTA_T5_STRIP13_DE_ENERGY -0.172676 0.0136818 +PISTA_T5_STRIP14_DE_ENERGY -0.42843 0.0135452 +PISTA_T5_STRIP15_DE_ENERGY -0.156476 0.0137873 +PISTA_T5_STRIP16_DE_ENERGY -0.444717 0.0135861 +PISTA_T5_STRIP17_DE_ENERGY -0.0735893 0.0135242 +PISTA_T5_STRIP18_DE_ENERGY -0.417483 0.013597 +PISTA_T5_STRIP19_DE_ENERGY -0.228124 0.0138517 +PISTA_T5_STRIP20_DE_ENERGY -0.402761 0.0135944 +PISTA_T5_STRIP21_DE_ENERGY -0.0770339 0.013652 +PISTA_T5_STRIP22_DE_ENERGY -0.367349 0.0135107 +PISTA_T5_STRIP23_DE_ENERGY -0.194743 0.0139011 +PISTA_T5_STRIP24_DE_ENERGY -0.342884 0.0136354 +PISTA_T5_STRIP25_DE_ENERGY -0.0765561 0.0137009 +PISTA_T5_STRIP26_DE_ENERGY -0.399042 0.0136493 +PISTA_T5_STRIP27_DE_ENERGY -0.191855 0.0139024 +PISTA_T5_STRIP28_DE_ENERGY -0.39704 0.0136427 +PISTA_T5_STRIP29_DE_ENERGY -0.124404 0.0136479 +PISTA_T5_STRIP30_DE_ENERGY -0.420286 0.0135661 +PISTA_T5_STRIP31_DE_ENERGY -0.123325 0.0137995 +PISTA_T5_STRIP32_DE_ENERGY -0.392154 0.0136003 +PISTA_T5_STRIP33_DE_ENERGY -0.437123 0.0136913 +PISTA_T5_STRIP34_DE_ENERGY -0.160685 0.0136634 +PISTA_T5_STRIP35_DE_ENERGY -0.429059 0.0138426 +PISTA_T5_STRIP36_DE_ENERGY -0.167748 0.0136291 +PISTA_T5_STRIP37_DE_ENERGY -0.364973 0.0135957 +PISTA_T5_STRIP38_DE_ENERGY -0.202545 0.0139178 +PISTA_T5_STRIP39_DE_ENERGY -0.323078 0.0138105 +PISTA_T5_STRIP40_DE_ENERGY -0.218351 0.0137528 +PISTA_T5_STRIP41_DE_ENERGY -0.42636 0.0137845 +PISTA_T5_STRIP42_DE_ENERGY -0.14952 0.0137409 +PISTA_T5_STRIP43_DE_ENERGY -0.439291 0.0137756 +PISTA_T5_STRIP44_DE_ENERGY -0.195743 0.0137685 +PISTA_T5_STRIP45_DE_ENERGY -0.350541 0.0137376 +PISTA_T5_STRIP46_DE_ENERGY -0.176354 0.0138633 +PISTA_T5_STRIP47_DE_ENERGY -0.390392 0.0137944 +PISTA_T5_STRIP48_DE_ENERGY -0.157408 0.0137127 +PISTA_T5_STRIP49_DE_ENERGY -0.346292 0.0137055 +PISTA_T5_STRIP50_DE_ENERGY -0.17103 0.0137759 +PISTA_T5_STRIP51_DE_ENERGY -0.44949 0.0137977 +PISTA_T5_STRIP52_DE_ENERGY -0.166175 0.0138196 +PISTA_T5_STRIP53_DE_ENERGY -0.378739 0.0136112 +PISTA_T5_STRIP54_DE_ENERGY -0.17409 0.0139368 +PISTA_T5_STRIP55_DE_ENERGY -0.407869 0.0138344 +PISTA_T5_STRIP56_DE_ENERGY -0.155505 0.0137922 +PISTA_T5_STRIP57_DE_ENERGY -0.39571 0.0137166 +PISTA_T5_STRIP58_DE_ENERGY -0.201292 0.0138365 +PISTA_T5_STRIP59_DE_ENERGY -0.426073 0.013846 +PISTA_T5_STRIP60_DE_ENERGY -0.182143 0.0137901 +PISTA_T5_STRIP61_DE_ENERGY -0.34011 0.0137684 +PISTA_T5_STRIP62_DE_ENERGY -0.173378 0.0138213 +PISTA_T5_STRIP63_DE_ENERGY -0.33569 0.0137999 +PISTA_T5_STRIP64_DE_ENERGY -0.142563 0.0137938 +PISTA_T5_STRIP65_DE_ENERGY -0.176723 0.0136613 +PISTA_T5_STRIP66_DE_ENERGY -0.419348 0.0136918 +PISTA_T5_STRIP67_DE_ENERGY -0.241521 0.0140183 +PISTA_T5_STRIP68_DE_ENERGY -0.4633 0.0136831 +PISTA_T5_STRIP69_DE_ENERGY -0.148835 0.0137963 +PISTA_T5_STRIP70_DE_ENERGY -0.351889 0.0137298 +PISTA_T5_STRIP71_DE_ENERGY -0.210857 0.0139225 +PISTA_T5_STRIP72_DE_ENERGY -0.396407 0.0136847 +PISTA_T5_STRIP73_DE_ENERGY -0.15809 0.013686 +PISTA_T5_STRIP74_DE_ENERGY -0.340247 0.0137413 +PISTA_T5_STRIP75_DE_ENERGY -0.16772 0.013795 +PISTA_T5_STRIP76_DE_ENERGY -0.291354 0.0136416 +PISTA_T5_STRIP77_DE_ENERGY -0.166776 0.0136782 +PISTA_T5_STRIP78_DE_ENERGY -0.44832 0.0137013 +PISTA_T5_STRIP79_DE_ENERGY -0.184816 0.0139961 +PISTA_T5_STRIP80_DE_ENERGY -0.367797 0.0137482 +PISTA_T5_STRIP81_DE_ENERGY -0.166626 0.013802 +PISTA_T5_STRIP82_DE_ENERGY -0.447139 0.0137914 +PISTA_T5_STRIP83_DE_ENERGY -0.144387 0.0139301 +PISTA_T5_STRIP84_DE_ENERGY -0.459427 0.0137469 +PISTA_T5_STRIP85_DE_ENERGY -0.137172 0.0136595 +PISTA_T5_STRIP86_DE_ENERGY -0.423798 0.0138154 +PISTA_T5_STRIP87_DE_ENERGY -0.156496 0.0139408 +PISTA_T5_STRIP88_DE_ENERGY -0.457754 0.0136732 +PISTA_T5_STRIP89_DE_ENERGY -0.138592 0.0137369 +PISTA_T5_STRIP90_DE_ENERGY -0.404949 0.0137892 +PISTA_T5_STRIP91_DE_ENERGY -0.172305 0.0141196 diff --git a/Projects/e850/Calibration/Energy/PISTA6_DE.cal b/Projects/e850/Calibration/Energy/PISTA6_DE.cal index 8f8512f479c3fdea3d205b0bec9fa53bb0988d2f..77d55713550bf4cddac6910af578aa2ae5b2e083 100644 --- a/Projects/e850/Calibration/Energy/PISTA6_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA6_DE.cal @@ -1,91 +1,91 @@ -PISTA_T6_STRIP1_DE_ENERGY -0.295162 0.0135797 -PISTA_T6_STRIP2_DE_ENERGY -0.117541 0.0135425 -PISTA_T6_STRIP3_DE_ENERGY -0.2611 0.0134774 -PISTA_T6_STRIP4_DE_ENERGY -0.0596662 0.0134172 -PISTA_T6_STRIP5_DE_ENERGY -0.282582 0.0136035 -PISTA_T6_STRIP6_DE_ENERGY -0.15845 0.0136412 -PISTA_T6_STRIP7_DE_ENERGY -0.263952 0.0134491 -PISTA_T6_STRIP8_DE_ENERGY -0.0619114 0.0133493 -PISTA_T6_STRIP9_DE_ENERGY -0.253845 0.0134848 -PISTA_T6_STRIP10_DE_ENERGY -0.0243365 0.0135865 -PISTA_T6_STRIP11_DE_ENERGY -0.312909 0.0134453 -PISTA_T6_STRIP12_DE_ENERGY 0.00331285 0.013433 -PISTA_T6_STRIP13_DE_ENERGY -0.352646 0.01353 -PISTA_T6_STRIP14_DE_ENERGY -0.09043 0.013775 -PISTA_T6_STRIP15_DE_ENERGY -0.292633 0.0135342 -PISTA_T6_STRIP16_DE_ENERGY -0.0225118 0.0135284 -PISTA_T6_STRIP17_DE_ENERGY -0.273087 0.0134904 -PISTA_T6_STRIP18_DE_ENERGY -0.0257949 0.0133622 -PISTA_T6_STRIP19_DE_ENERGY -0.349148 0.0134364 -PISTA_T6_STRIP20_DE_ENERGY -0.0427387 0.0133733 -PISTA_T6_STRIP21_DE_ENERGY -0.279669 0.0135569 -PISTA_T6_STRIP22_DE_ENERGY -0.0379788 0.0135752 -PISTA_T6_STRIP23_DE_ENERGY -0.256088 0.0133669 -PISTA_T6_STRIP24_DE_ENERGY -0.0333876 0.0135569 -PISTA_T6_STRIP25_DE_ENERGY -0.277631 0.0135411 -PISTA_T6_STRIP26_DE_ENERGY -0.0799763 0.0137114 -PISTA_T6_STRIP27_DE_ENERGY -0.260605 0.013397 -PISTA_T6_STRIP28_DE_ENERGY -0.103653 0.0134562 -PISTA_T6_STRIP29_DE_ENERGY -0.277301 0.0134713 -PISTA_T6_STRIP30_DE_ENERGY -0.1119 0.0136483 -PISTA_T6_STRIP31_DE_ENERGY -0.219479 0.01335 -PISTA_T6_STRIP32_DE_ENERGY 0.0769944 0.0135376 -PISTA_T6_STRIP33_DE_ENERGY -0.00262288 0.0135073 -PISTA_T6_STRIP34_DE_ENERGY -0.244433 0.0134325 -PISTA_T6_STRIP35_DE_ENERGY -0.186052 0.0136085 -PISTA_T6_STRIP36_DE_ENERGY -0.257802 0.0133972 -PISTA_T6_STRIP37_DE_ENERGY -0.0473287 0.0135112 -PISTA_T6_STRIP38_DE_ENERGY -0.234842 0.0134894 -PISTA_T6_STRIP39_DE_ENERGY -0.0970196 0.013839 -PISTA_T6_STRIP40_DE_ENERGY -0.251036 0.013424 -PISTA_T6_STRIP41_DE_ENERGY -0.0511016 0.0135948 -PISTA_T6_STRIP42_DE_ENERGY -0.227905 0.0134733 -PISTA_T6_STRIP43_DE_ENERGY -0.0733629 0.0136397 -PISTA_T6_STRIP44_DE_ENERGY -0.255958 0.0134806 -PISTA_T6_STRIP45_DE_ENERGY -0.0853955 0.0136092 -PISTA_T6_STRIP46_DE_ENERGY -0.336557 0.0134669 -PISTA_T6_STRIP47_DE_ENERGY -0.040829 0.0137935 -PISTA_T6_STRIP48_DE_ENERGY -0.262316 0.0136054 -PISTA_T6_STRIP49_DE_ENERGY -0.0229498 0.0135372 -PISTA_T6_STRIP50_DE_ENERGY -0.216589 0.0134222 -PISTA_T6_STRIP51_DE_ENERGY -0.0767958 0.0137342 -PISTA_T6_STRIP52_DE_ENERGY -0.287696 0.0138535 -PISTA_T6_STRIP53_DE_ENERGY 0.0611293 0.0135521 -PISTA_T6_STRIP54_DE_ENERGY -0.247554 0.0135085 -PISTA_T6_STRIP55_DE_ENERGY -0.0355381 0.0136169 -PISTA_T6_STRIP56_DE_ENERGY -0.288542 0.0136883 -PISTA_T6_STRIP57_DE_ENERGY -0.0391237 0.0136424 -PISTA_T6_STRIP58_DE_ENERGY -0.185545 0.0136098 -PISTA_T6_STRIP59_DE_ENERGY -0.0280569 0.0138156 -PISTA_T6_STRIP60_DE_ENERGY -0.296803 0.0136297 -PISTA_T6_STRIP61_DE_ENERGY -0.0338238 0.013661 -PISTA_T6_STRIP62_DE_ENERGY -0.265955 0.0136178 -PISTA_T6_STRIP63_DE_ENERGY 0.0152442 0.0137408 -PISTA_T6_STRIP64_DE_ENERGY -0.291666 0.0136723 -PISTA_T6_STRIP65_DE_ENERGY -0.252203 0.0137011 -PISTA_T6_STRIP66_DE_ENERGY -0.035687 0.0138762 -PISTA_T6_STRIP67_DE_ENERGY -0.265182 0.0136916 -PISTA_T6_STRIP68_DE_ENERGY -0.169342 0.0136984 -PISTA_T6_STRIP69_DE_ENERGY -0.254372 0.0136654 -PISTA_T6_STRIP70_DE_ENERGY -0.084188 0.0137964 -PISTA_T6_STRIP71_DE_ENERGY -0.235228 0.0136289 -PISTA_T6_STRIP72_DE_ENERGY -0.0149931 0.0136615 -PISTA_T6_STRIP73_DE_ENERGY -0.240186 0.0137434 -PISTA_T6_STRIP74_DE_ENERGY -0.0558019 0.0138873 -PISTA_T6_STRIP75_DE_ENERGY -0.279607 0.0137154 -PISTA_T6_STRIP76_DE_ENERGY -0.00457466 0.0136279 -PISTA_T6_STRIP77_DE_ENERGY -0.227991 0.0135259 -PISTA_T6_STRIP78_DE_ENERGY -0.0206991 0.0137484 -PISTA_T6_STRIP79_DE_ENERGY -0.285966 0.0137009 -PISTA_T6_STRIP80_DE_ENERGY -0.0320306 0.0135958 -PISTA_T6_STRIP81_DE_ENERGY -0.249389 0.0135513 -PISTA_T6_STRIP82_DE_ENERGY -0.0372687 0.0136032 -PISTA_T6_STRIP83_DE_ENERGY -0.286214 0.0135747 -PISTA_T6_STRIP84_DE_ENERGY 1.79514 0.0136465 -PISTA_T6_STRIP85_DE_ENERGY -0.247064 0.0137143 -PISTA_T6_STRIP86_DE_ENERGY -0.0982807 0.0138872 -PISTA_T6_STRIP87_DE_ENERGY -0.279337 0.0136781 -PISTA_T6_STRIP88_DE_ENERGY -0.0203672 0.0136771 -PISTA_T6_STRIP89_DE_ENERGY -0.298206 0.0138374 -PISTA_T6_STRIP90_DE_ENERGY -0.0726062 0.0138483 -PISTA_T6_STRIP91_DE_ENERGY -0.244824 0.0136925 +PISTA_T6_STRIP1_DE_ENERGY -0.435719 0.013726 +PISTA_T6_STRIP2_DE_ENERGY -0.256158 0.0136882 +PISTA_T6_STRIP3_DE_ENERGY -0.401289 0.0136225 +PISTA_T6_STRIP4_DE_ENERGY -0.197674 0.0135616 +PISTA_T6_STRIP5_DE_ENERGY -0.423007 0.01375 +PISTA_T6_STRIP6_DE_ENERGY -0.29752 0.013788 +PISTA_T6_STRIP7_DE_ENERGY -0.404154 0.0135939 +PISTA_T6_STRIP8_DE_ENERGY -0.199925 0.013493 +PISTA_T6_STRIP9_DE_ENERGY -0.393967 0.0136301 +PISTA_T6_STRIP10_DE_ENERGY -0.161983 0.0137329 +PISTA_T6_STRIP11_DE_ENERGY -0.453654 0.0135901 +PISTA_T6_STRIP12_DE_ENERGY -0.134028 0.0135776 +PISTA_T6_STRIP13_DE_ENERGY -0.493811 0.0136756 +PISTA_T6_STRIP14_DE_ENERGY -0.228799 0.0139234 +PISTA_T6_STRIP15_DE_ENERGY -0.433169 0.01368 +PISTA_T6_STRIP16_DE_ENERGY -0.160152 0.0136742 +PISTA_T6_STRIP17_DE_ENERGY -0.413406 0.0136357 +PISTA_T6_STRIP18_DE_ENERGY -0.163436 0.013506 +PISTA_T6_STRIP19_DE_ENERGY -0.490281 0.0135811 +PISTA_T6_STRIP20_DE_ENERGY -0.180609 0.0135174 +PISTA_T6_STRIP21_DE_ENERGY -0.420064 0.0137029 +PISTA_T6_STRIP22_DE_ENERGY -0.175793 0.0137215 +PISTA_T6_STRIP23_DE_ENERGY -0.396294 0.013511 +PISTA_T6_STRIP24_DE_ENERGY -0.171119 0.0137028 +PISTA_T6_STRIP25_DE_ENERGY -0.418006 0.0136869 +PISTA_T6_STRIP26_DE_ENERGY -0.218256 0.0138591 +PISTA_T6_STRIP27_DE_ENERGY -0.400823 0.0135413 +PISTA_T6_STRIP28_DE_ENERGY -0.242157 0.0136011 +PISTA_T6_STRIP29_DE_ENERGY -0.417635 0.0136163 +PISTA_T6_STRIP30_DE_ENERGY -0.25049 0.0137953 +PISTA_T6_STRIP31_DE_ENERGY -0.359196 0.0134937 +PISTA_T6_STRIP32_DE_ENERGY -0.0595621 0.0136834 +PISTA_T6_STRIP33_DE_ENERGY -0.140036 0.0136528 +PISTA_T6_STRIP34_DE_ENERGY -0.384431 0.0135771 +PISTA_T6_STRIP35_DE_ENERGY -0.325429 0.013755 +PISTA_T6_STRIP36_DE_ENERGY -0.397971 0.0135415 +PISTA_T6_STRIP37_DE_ENERGY -0.18523 0.0136567 +PISTA_T6_STRIP38_DE_ENERGY -0.374777 0.0136347 +PISTA_T6_STRIP39_DE_ENERGY -0.235479 0.0139881 +PISTA_T6_STRIP40_DE_ENERGY -0.391118 0.0135686 +PISTA_T6_STRIP41_DE_ENERGY -0.18905 0.0137413 +PISTA_T6_STRIP42_DE_ENERGY -0.367749 0.0136185 +PISTA_T6_STRIP43_DE_ENERGY -0.211539 0.0137866 +PISTA_T6_STRIP44_DE_ENERGY -0.396124 0.0136259 +PISTA_T6_STRIP45_DE_ENERGY -0.223691 0.0137557 +PISTA_T6_STRIP46_DE_ENERGY -0.477593 0.013612 +PISTA_T6_STRIP47_DE_ENERGY -0.178658 0.0139421 +PISTA_T6_STRIP48_DE_ENERGY -0.402535 0.0137519 +PISTA_T6_STRIP49_DE_ENERGY -0.160578 0.013683 +PISTA_T6_STRIP50_DE_ENERGY -0.356302 0.0135668 +PISTA_T6_STRIP51_DE_ENERGY -0.215016 0.0138821 +PISTA_T6_STRIP52_DE_ENERGY -0.428193 0.0140028 +PISTA_T6_STRIP53_DE_ENERGY -0.0755965 0.013698 +PISTA_T6_STRIP54_DE_ENERGY -0.387603 0.013654 +PISTA_T6_STRIP55_DE_ENERGY -0.173302 0.0137636 +PISTA_T6_STRIP56_DE_ENERGY -0.429071 0.0138358 +PISTA_T6_STRIP57_DE_ENERGY -0.176943 0.0137894 +PISTA_T6_STRIP58_DE_ENERGY -0.324929 0.0137564 +PISTA_T6_STRIP59_DE_ENERGY -0.165746 0.0139645 +PISTA_T6_STRIP60_DE_ENERGY -0.437391 0.0137766 +PISTA_T6_STRIP61_DE_ENERGY -0.171626 0.0138082 +PISTA_T6_STRIP62_DE_ENERGY -0.40621 0.0137645 +PISTA_T6_STRIP63_DE_ENERGY -0.121956 0.0138887 +PISTA_T6_STRIP64_DE_ENERGY -0.432195 0.0138196 +PISTA_T6_STRIP65_DE_ENERGY -0.392308 0.0138487 +PISTA_T6_STRIP66_DE_ENERGY -0.173441 0.0140257 +PISTA_T6_STRIP67_DE_ENERGY -0.405431 0.0138391 +PISTA_T6_STRIP68_DE_ENERGY -0.308542 0.0138459 +PISTA_T6_STRIP69_DE_ENERGY -0.394499 0.0138126 +PISTA_T6_STRIP70_DE_ENERGY -0.222477 0.013945 +PISTA_T6_STRIP71_DE_ENERGY -0.375145 0.0137757 +PISTA_T6_STRIP72_DE_ENERGY -0.15253 0.0138086 +PISTA_T6_STRIP73_DE_ENERGY -0.380158 0.0138914 +PISTA_T6_STRIP74_DE_ENERGY -0.193808 0.0140369 +PISTA_T6_STRIP75_DE_ENERGY -0.41998 0.0138631 +PISTA_T6_STRIP76_DE_ENERGY -0.142005 0.0137747 +PISTA_T6_STRIP77_DE_ENERGY -0.367814 0.0136716 +PISTA_T6_STRIP78_DE_ENERGY -0.158296 0.0138964 +PISTA_T6_STRIP79_DE_ENERGY -0.426458 0.0138485 +PISTA_T6_STRIP80_DE_ENERGY -0.169773 0.0137423 +PISTA_T6_STRIP81_DE_ENERGY -0.389457 0.0136972 +PISTA_T6_STRIP82_DE_ENERGY -0.17506 0.0137497 +PISTA_T6_STRIP83_DE_ENERGY -0.426681 0.0137209 +PISTA_T6_STRIP84_DE_ENERGY 1.67709 0.0137935 +PISTA_T6_STRIP85_DE_ENERGY -0.387099 0.013862 +PISTA_T6_STRIP86_DE_ENERGY -0.236726 0.0140367 +PISTA_T6_STRIP87_DE_ENERGY -0.419719 0.0138254 +PISTA_T6_STRIP88_DE_ENERGY -0.157979 0.0138244 +PISTA_T6_STRIP89_DE_ENERGY -0.438819 0.0139864 +PISTA_T6_STRIP90_DE_ENERGY -0.21075 0.0139974 +PISTA_T6_STRIP91_DE_ENERGY -0.384807 0.0138399 diff --git a/Projects/e850/Calibration/Energy/PISTA7_DE.cal b/Projects/e850/Calibration/Energy/PISTA7_DE.cal index f258f391f00b7c839036b951c73ec563664c5bc7..e40d3dd493110e9b761591fb7f033121b41eb807 100644 --- a/Projects/e850/Calibration/Energy/PISTA7_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA7_DE.cal @@ -1,91 +1,91 @@ -PISTA_T7_STRIP1_DE_ENERGY 0.0130628 0.0134241 -PISTA_T7_STRIP2_DE_ENERGY -0.228398 0.0133207 -PISTA_T7_STRIP3_DE_ENERGY -0.0560587 0.0136779 -PISTA_T7_STRIP4_DE_ENERGY -0.238721 0.01332 -PISTA_T7_STRIP5_DE_ENERGY 0.0370535 0.0135446 -PISTA_T7_STRIP6_DE_ENERGY -0.270432 0.0133438 -PISTA_T7_STRIP7_DE_ENERGY -0.0423898 0.0135874 -PISTA_T7_STRIP8_DE_ENERGY -0.260315 0.013284 -PISTA_T7_STRIP9_DE_ENERGY 0.00994431 0.0134846 -PISTA_T7_STRIP10_DE_ENERGY -0.219155 0.0133971 -PISTA_T7_STRIP11_DE_ENERGY -0.0387632 0.0134841 -PISTA_T7_STRIP12_DE_ENERGY -0.204426 0.0135196 -PISTA_T7_STRIP13_DE_ENERGY -0.0626145 0.0136873 -PISTA_T7_STRIP14_DE_ENERGY -0.295728 0.013492 -PISTA_T7_STRIP15_DE_ENERGY -0.0246468 0.0136748 -PISTA_T7_STRIP16_DE_ENERGY -0.199742 0.0134676 -PISTA_T7_STRIP17_DE_ENERGY 0.0579859 0.0134754 -PISTA_T7_STRIP18_DE_ENERGY -0.271429 0.0135159 -PISTA_T7_STRIP19_DE_ENERGY -0.0234143 0.0135922 -PISTA_T7_STRIP20_DE_ENERGY -0.242065 0.0135114 -PISTA_T7_STRIP21_DE_ENERGY -0.00598894 0.0135326 -PISTA_T7_STRIP22_DE_ENERGY -0.25988 0.0134126 -PISTA_T7_STRIP23_DE_ENERGY 0.00280688 0.0136473 -PISTA_T7_STRIP24_DE_ENERGY -0.254637 0.0136096 -PISTA_T7_STRIP25_DE_ENERGY 0.00861913 0.0135898 -PISTA_T7_STRIP26_DE_ENERGY -0.198573 0.0134581 -PISTA_T7_STRIP27_DE_ENERGY -0.0275351 0.0137279 -PISTA_T7_STRIP28_DE_ENERGY -0.238332 0.0135871 -PISTA_T7_STRIP29_DE_ENERGY -0.0591077 0.0137489 -PISTA_T7_STRIP30_DE_ENERGY -0.30798 0.0135462 -PISTA_T7_STRIP31_DE_ENERGY 0.00366146 0.0135475 -PISTA_T7_STRIP32_DE_ENERGY -0.285259 0.0134449 -PISTA_T7_STRIP33_DE_ENERGY -0.211637 0.0136426 -PISTA_T7_STRIP34_DE_ENERGY -0.0181697 0.013813 -PISTA_T7_STRIP35_DE_ENERGY -0.272392 0.0136115 -PISTA_T7_STRIP36_DE_ENERGY -0.0188171 0.0136039 -PISTA_T7_STRIP37_DE_ENERGY -0.24483 0.013641 -PISTA_T7_STRIP38_DE_ENERGY -0.0923197 0.0137777 -PISTA_T7_STRIP39_DE_ENERGY -0.239446 0.0137312 -PISTA_T7_STRIP40_DE_ENERGY -0.043674 0.0136217 -PISTA_T7_STRIP41_DE_ENERGY -0.184566 0.013714 -PISTA_T7_STRIP42_DE_ENERGY -0.0127689 0.013665 -PISTA_T7_STRIP43_DE_ENERGY -0.208581 0.0135738 -PISTA_T7_STRIP44_DE_ENERGY 0.0215766 0.0136999 -PISTA_T7_STRIP45_DE_ENERGY -0.192299 0.0137544 -PISTA_T7_STRIP46_DE_ENERGY -0.015658 0.013821 -PISTA_T7_STRIP47_DE_ENERGY -0.225749 0.0137483 -PISTA_T7_STRIP48_DE_ENERGY -0.0221143 0.0137689 -PISTA_T7_STRIP49_DE_ENERGY -0.253789 0.0136431 -PISTA_T7_STRIP50_DE_ENERGY -0.0427595 0.0137143 -PISTA_T7_STRIP51_DE_ENERGY -0.254699 0.0135504 -PISTA_T7_STRIP52_DE_ENERGY 0.0667231 0.0135756 -PISTA_T7_STRIP53_DE_ENERGY -0.27856 0.013647 -PISTA_T7_STRIP54_DE_ENERGY -0.0810277 0.0137055 -PISTA_T7_STRIP55_DE_ENERGY -0.292726 0.0136306 -PISTA_T7_STRIP56_DE_ENERGY -0.026686 0.0135607 -PISTA_T7_STRIP57_DE_ENERGY -0.23031 0.0136488 -PISTA_T7_STRIP58_DE_ENERGY -0.00938287 0.0136367 -PISTA_T7_STRIP59_DE_ENERGY -0.19215 0.0137804 -PISTA_T7_STRIP60_DE_ENERGY 0.069258 0.0136438 -PISTA_T7_STRIP61_DE_ENERGY -0.307539 0.0137315 -PISTA_T7_STRIP62_DE_ENERGY -0.141809 0.0137537 -PISTA_T7_STRIP63_DE_ENERGY -0.25511 0.0136089 -PISTA_T7_STRIP64_DE_ENERGY 0.0485571 0.0136016 -PISTA_T7_STRIP65_DE_ENERGY -0.00118298 0.0137336 -PISTA_T7_STRIP66_DE_ENERGY -0.28447 0.0137953 -PISTA_T7_STRIP67_DE_ENERGY 0.0241296 0.0138205 -PISTA_T7_STRIP68_DE_ENERGY -0.252339 0.0135971 -PISTA_T7_STRIP69_DE_ENERGY 0.00149643 0.0137962 -PISTA_T7_STRIP70_DE_ENERGY -0.313144 0.0137184 -PISTA_T7_STRIP71_DE_ENERGY -0.0728223 0.0137934 -PISTA_T7_STRIP72_DE_ENERGY -0.272233 0.0137728 -PISTA_T7_STRIP73_DE_ENERGY -0.015857 0.0137598 -PISTA_T7_STRIP74_DE_ENERGY -0.208516 0.0138019 -PISTA_T7_STRIP75_DE_ENERGY -0.0586122 0.0137502 -PISTA_T7_STRIP76_DE_ENERGY -0.282448 0.013684 -PISTA_T7_STRIP77_DE_ENERGY 0.0295988 0.0136995 -PISTA_T7_STRIP78_DE_ENERGY -0.249703 0.0138514 -PISTA_T7_STRIP79_DE_ENERGY 0.0546754 0.0138178 -PISTA_T7_STRIP80_DE_ENERGY -0.263514 0.0138325 -PISTA_T7_STRIP81_DE_ENERGY 0.0602876 0.0137365 -PISTA_T7_STRIP82_DE_ENERGY -0.266387 0.0137336 -PISTA_T7_STRIP83_DE_ENERGY 0.000447597 0.0139051 +PISTA_T7_STRIP1_DE_ENERGY -0.124211 0.0135688 +PISTA_T7_STRIP2_DE_ENERGY -0.368241 0.0134641 +PISTA_T7_STRIP3_DE_ENERGY -0.194058 0.0138252 +PISTA_T7_STRIP4_DE_ENERGY -0.378679 0.0134635 +PISTA_T7_STRIP5_DE_ENERGY -0.0999327 0.0136904 +PISTA_T7_STRIP6_DE_ENERGY -0.410698 0.0134875 +PISTA_T7_STRIP7_DE_ENERGY -0.180199 0.0137336 +PISTA_T7_STRIP8_DE_ENERGY -0.400479 0.013427 +PISTA_T7_STRIP9_DE_ENERGY -0.127346 0.0136298 +PISTA_T7_STRIP10_DE_ENERGY -0.358877 0.0135413 +PISTA_T7_STRIP11_DE_ENERGY -0.176587 0.0136293 +PISTA_T7_STRIP12_DE_ENERGY -0.344016 0.0136652 +PISTA_T7_STRIP13_DE_ENERGY -0.200691 0.0138347 +PISTA_T7_STRIP14_DE_ENERGY -0.436257 0.0136372 +PISTA_T7_STRIP15_DE_ENERGY -0.162311 0.0138221 +PISTA_T7_STRIP16_DE_ENERGY -0.339283 0.0136127 +PISTA_T7_STRIP17_DE_ENERGY -0.0788037 0.0136206 +PISTA_T7_STRIP18_DE_ENERGY -0.411711 0.0136614 +PISTA_T7_STRIP19_DE_ENERGY -0.161055 0.0137386 +PISTA_T7_STRIP20_DE_ENERGY -0.382035 0.0136568 +PISTA_T7_STRIP21_DE_ENERGY -0.14346 0.0136784 +PISTA_T7_STRIP22_DE_ENERGY -0.400054 0.013557 +PISTA_T7_STRIP23_DE_ENERGY -0.134543 0.0137942 +PISTA_T7_STRIP24_DE_ENERGY -0.394766 0.0137562 +PISTA_T7_STRIP25_DE_ENERGY -0.128723 0.0137363 +PISTA_T7_STRIP26_DE_ENERGY -0.338061 0.013603 +PISTA_T7_STRIP27_DE_ENERGY -0.165221 0.0138757 +PISTA_T7_STRIP28_DE_ENERGY -0.378288 0.0137335 +PISTA_T7_STRIP29_DE_ENERGY -0.197146 0.013897 +PISTA_T7_STRIP30_DE_ENERGY -0.448668 0.013692 +PISTA_T7_STRIP31_DE_ENERGY -0.133694 0.0136934 +PISTA_T7_STRIP32_DE_ENERGY -0.42571 0.0135897 +PISTA_T7_STRIP33_DE_ENERGY -0.351323 0.0137895 +PISTA_T7_STRIP34_DE_ENERGY -0.155753 0.0139618 +PISTA_T7_STRIP35_DE_ENERGY -0.412653 0.0137579 +PISTA_T7_STRIP36_DE_ENERGY -0.156381 0.0137503 +PISTA_T7_STRIP37_DE_ENERGY -0.384829 0.0137879 +PISTA_T7_STRIP38_DE_ENERGY -0.230677 0.013926 +PISTA_T7_STRIP39_DE_ENERGY -0.379367 0.013879 +PISTA_T7_STRIP40_DE_ENERGY -0.181498 0.0137683 +PISTA_T7_STRIP41_DE_ENERGY -0.323925 0.0138616 +PISTA_T7_STRIP42_DE_ENERGY -0.150275 0.0138122 +PISTA_T7_STRIP43_DE_ENERGY -0.348216 0.01372 +PISTA_T7_STRIP44_DE_ENERGY -0.115581 0.0138474 +PISTA_T7_STRIP45_DE_ENERGY -0.331762 0.0139025 +PISTA_T7_STRIP46_DE_ENERGY -0.153206 0.0139698 +PISTA_T7_STRIP47_DE_ENERGY -0.365543 0.0138963 +PISTA_T7_STRIP48_DE_ENERGY -0.159727 0.0139172 +PISTA_T7_STRIP49_DE_ENERGY -0.393882 0.01379 +PISTA_T7_STRIP50_DE_ENERGY -0.180579 0.0138619 +PISTA_T7_STRIP51_DE_ENERGY -0.394826 0.0136963 +PISTA_T7_STRIP52_DE_ENERGY -0.0699322 0.0137218 +PISTA_T7_STRIP53_DE_ENERGY -0.418928 0.013794 +PISTA_T7_STRIP54_DE_ENERGY -0.219285 0.0138531 +PISTA_T7_STRIP55_DE_ENERGY -0.43326 0.0137774 +PISTA_T7_STRIP56_DE_ENERGY -0.164356 0.0137067 +PISTA_T7_STRIP57_DE_ENERGY -0.370161 0.0137958 +PISTA_T7_STRIP58_DE_ENERGY -0.146839 0.0137835 +PISTA_T7_STRIP59_DE_ENERGY -0.331602 0.0139288 +PISTA_T7_STRIP60_DE_ENERGY -0.0673566 0.0137907 +PISTA_T7_STRIP61_DE_ENERGY -0.448227 0.0138794 +PISTA_T7_STRIP62_DE_ENERGY -0.280704 0.0139018 +PISTA_T7_STRIP63_DE_ENERGY -0.395207 0.0137553 +PISTA_T7_STRIP64_DE_ENERGY -0.0882917 0.013748 +PISTA_T7_STRIP65_DE_ENERGY -0.138545 0.0138814 +PISTA_T7_STRIP66_DE_ENERGY -0.424902 0.0139439 +PISTA_T7_STRIP67_DE_ENERGY -0.112981 0.0139693 +PISTA_T7_STRIP68_DE_ENERGY -0.392411 0.0137435 +PISTA_T7_STRIP69_DE_ENERGY -0.135871 0.0139448 +PISTA_T7_STRIP70_DE_ENERGY -0.453879 0.0138661 +PISTA_T7_STRIP71_DE_ENERGY -0.210975 0.013942 +PISTA_T7_STRIP72_DE_ENERGY -0.412518 0.013921 +PISTA_T7_STRIP73_DE_ENERGY -0.153416 0.013908 +PISTA_T7_STRIP74_DE_ENERGY -0.348133 0.0139505 +PISTA_T7_STRIP75_DE_ENERGY -0.196604 0.0138983 +PISTA_T7_STRIP76_DE_ENERGY -0.42289 0.0138314 +PISTA_T7_STRIP77_DE_ENERGY -0.107456 0.013847 +PISTA_T7_STRIP78_DE_ENERGY -0.389756 0.0140005 +PISTA_T7_STRIP79_DE_ENERGY -0.0821183 0.0139667 +PISTA_T7_STRIP80_DE_ENERGY -0.403717 0.0139814 +PISTA_T7_STRIP81_DE_ENERGY -0.076444 0.0138845 +PISTA_T7_STRIP82_DE_ENERGY -0.406622 0.0138815 +PISTA_T7_STRIP83_DE_ENERGY -0.136932 0.0140549 PISTA_T7_STRIP84_DE_ENERGY 0 1 -PISTA_T7_STRIP85_DE_ENERGY 0.0366296 0.0137015 +PISTA_T7_STRIP85_DE_ENERGY -0.100334 0.013849 PISTA_T7_STRIP86_DE_ENERGY 0 1 -PISTA_T7_STRIP87_DE_ENERGY 0.0207538 0.0138204 +PISTA_T7_STRIP87_DE_ENERGY -0.116398 0.0139692 PISTA_T7_STRIP88_DE_ENERGY 0 1 -PISTA_T7_STRIP89_DE_ENERGY 0.00750927 0.0137009 -PISTA_T7_STRIP90_DE_ENERGY -0.32314 0.0138898 -PISTA_T7_STRIP91_DE_ENERGY -0.0485051 0.0139548 +PISTA_T7_STRIP89_DE_ENERGY -0.129792 0.0138485 +PISTA_T7_STRIP90_DE_ENERGY -0.464022 0.0140394 +PISTA_T7_STRIP91_DE_ENERGY -0.186398 0.0141051 diff --git a/Projects/e850/Calibration/Energy/PISTA8_DE.cal b/Projects/e850/Calibration/Energy/PISTA8_DE.cal index 4f6bb517feaaf868ec866cb1121c0f0c47f09a94..ef04bf461119e6addbe0bd055ec1217a31431ff9 100644 --- a/Projects/e850/Calibration/Energy/PISTA8_DE.cal +++ b/Projects/e850/Calibration/Energy/PISTA8_DE.cal @@ -1,91 +1,91 @@ -PISTA_T8_STRIP1_DE_ENERGY -0.173362 0.013327 -PISTA_T8_STRIP2_DE_ENERGY -0.0050505 0.0136812 -PISTA_T8_STRIP3_DE_ENERGY -0.23213 0.0134527 -PISTA_T8_STRIP4_DE_ENERGY -0.0248061 0.0134373 -PISTA_T8_STRIP5_DE_ENERGY -0.209469 0.0135338 -PISTA_T8_STRIP6_DE_ENERGY -0.0225401 0.0135192 -PISTA_T8_STRIP7_DE_ENERGY -0.283521 0.0135698 -PISTA_T8_STRIP8_DE_ENERGY -0.027049 0.0133784 -PISTA_T8_STRIP9_DE_ENERGY -0.213093 0.013533 -PISTA_T8_STRIP10_DE_ENERGY -0.0634447 0.0136381 -PISTA_T8_STRIP11_DE_ENERGY -0.282898 0.0135297 -PISTA_T8_STRIP12_DE_ENERGY -0.0579659 0.0135929 -PISTA_T8_STRIP13_DE_ENERGY -0.277136 0.013497 -PISTA_T8_STRIP14_DE_ENERGY -0.0529269 0.0135493 -PISTA_T8_STRIP15_DE_ENERGY -0.296281 0.0135459 -PISTA_T8_STRIP16_DE_ENERGY 0.00108905 0.0135787 -PISTA_T8_STRIP17_DE_ENERGY -0.189405 0.0134907 -PISTA_T8_STRIP18_DE_ENERGY -0.112372 0.0135382 -PISTA_T8_STRIP19_DE_ENERGY -0.283971 0.0135277 -PISTA_T8_STRIP20_DE_ENERGY -0.0678022 0.013511 -PISTA_T8_STRIP21_DE_ENERGY -0.234833 0.0134904 -PISTA_T8_STRIP22_DE_ENERGY -0.0973687 0.0136577 -PISTA_T8_STRIP23_DE_ENERGY -0.257637 0.0134097 -PISTA_T8_STRIP24_DE_ENERGY -0.0766786 0.0135587 -PISTA_T8_STRIP25_DE_ENERGY -0.332302 0.0135791 -PISTA_T8_STRIP26_DE_ENERGY -0.10495 0.0135729 -PISTA_T8_STRIP27_DE_ENERGY -0.290923 0.0135674 -PISTA_T8_STRIP28_DE_ENERGY 0.000454304 0.0136324 -PISTA_T8_STRIP29_DE_ENERGY -0.266936 0.0135261 -PISTA_T8_STRIP30_DE_ENERGY -0.055514 0.0136768 -PISTA_T8_STRIP31_DE_ENERGY -0.232838 0.0136458 -PISTA_T8_STRIP32_DE_ENERGY -0.0704555 0.0135236 -PISTA_T8_STRIP33_DE_ENERGY -0.013773 0.0135753 -PISTA_T8_STRIP34_DE_ENERGY -0.223899 0.013534 -PISTA_T8_STRIP35_DE_ENERGY -0.101883 0.0138312 -PISTA_T8_STRIP36_DE_ENERGY -0.17456 0.013467 -PISTA_T8_STRIP37_DE_ENERGY 0.017684 0.0137927 -PISTA_T8_STRIP38_DE_ENERGY -0.262466 0.0136077 -PISTA_T8_STRIP39_DE_ENERGY -0.140001 0.0136942 -PISTA_T8_STRIP40_DE_ENERGY -0.16098 0.0136118 -PISTA_T8_STRIP41_DE_ENERGY -0.0375967 0.0136625 -PISTA_T8_STRIP42_DE_ENERGY -0.199402 0.0133953 -PISTA_T8_STRIP43_DE_ENERGY -0.0691793 0.0136513 -PISTA_T8_STRIP44_DE_ENERGY -0.170229 0.0134626 -PISTA_T8_STRIP45_DE_ENERGY -0.0659296 0.0136539 -PISTA_T8_STRIP46_DE_ENERGY -0.285193 0.0135131 -PISTA_T8_STRIP47_DE_ENERGY -0.0195852 0.0138467 -PISTA_T8_STRIP48_DE_ENERGY -0.218405 0.0134856 -PISTA_T8_STRIP49_DE_ENERGY 0.00822973 0.0135593 -PISTA_T8_STRIP50_DE_ENERGY -0.238927 0.013581 -PISTA_T8_STRIP51_DE_ENERGY -0.0630117 0.0137519 +PISTA_T8_STRIP1_DE_ENERGY -0.312598 0.0134705 +PISTA_T8_STRIP2_DE_ENERGY -0.142454 0.0138284 +PISTA_T8_STRIP3_DE_ENERGY -0.372006 0.0135976 +PISTA_T8_STRIP4_DE_ENERGY -0.162449 0.013582 +PISTA_T8_STRIP5_DE_ENERGY -0.349133 0.0136797 +PISTA_T8_STRIP6_DE_ENERGY -0.160221 0.0136649 +PISTA_T8_STRIP7_DE_ENERGY -0.423905 0.0137158 +PISTA_T8_STRIP8_DE_ENERGY -0.164721 0.0135225 +PISTA_T8_STRIP9_DE_ENERGY -0.352794 0.0136788 +PISTA_T8_STRIP10_DE_ENERGY -0.201563 0.0137851 +PISTA_T8_STRIP11_DE_ENERGY -0.423315 0.0136754 +PISTA_T8_STRIP12_DE_ENERGY -0.195977 0.0137393 +PISTA_T8_STRIP13_DE_ENERGY -0.417525 0.0136424 +PISTA_T8_STRIP14_DE_ENERGY -0.190904 0.0136953 +PISTA_T8_STRIP15_DE_ENERGY -0.43687 0.0136918 +PISTA_T8_STRIP16_DE_ENERGY -0.136293 0.013725 +PISTA_T8_STRIP17_DE_ENERGY -0.32888 0.0136361 +PISTA_T8_STRIP18_DE_ENERGY -0.250985 0.013684 +PISTA_T8_STRIP19_DE_ENERGY -0.424419 0.0136734 +PISTA_T8_STRIP20_DE_ENERGY -0.205919 0.0136565 +PISTA_T8_STRIP21_DE_ENERGY -0.374728 0.0136356 +PISTA_T8_STRIP22_DE_ENERGY -0.235804 0.0138048 +PISTA_T8_STRIP23_DE_ENERGY -0.397812 0.0135542 +PISTA_T8_STRIP24_DE_ENERGY -0.214895 0.0137048 +PISTA_T8_STRIP25_DE_ENERGY -0.473241 0.0137253 +PISTA_T8_STRIP26_DE_ENERGY -0.243455 0.013719 +PISTA_T8_STRIP27_DE_ENERGY -0.43145 0.0137136 +PISTA_T8_STRIP28_DE_ENERGY -0.13696 0.0137793 +PISTA_T8_STRIP29_DE_ENERGY -0.407164 0.0136717 +PISTA_T8_STRIP30_DE_ENERGY -0.193536 0.0138242 +PISTA_T8_STRIP31_DE_ENERGY -0.372753 0.0137928 +PISTA_T8_STRIP32_DE_ENERGY -0.208611 0.0136693 +PISTA_T8_STRIP33_DE_ENERGY -0.151285 0.0137214 +PISTA_T8_STRIP34_DE_ENERGY -0.363724 0.0136798 +PISTA_T8_STRIP35_DE_ENERGY -0.240372 0.0139802 +PISTA_T8_STRIP36_DE_ENERGY -0.313833 0.013612 +PISTA_T8_STRIP37_DE_ENERGY -0.119516 0.0139413 +PISTA_T8_STRIP38_DE_ENERGY -0.402694 0.0137543 +PISTA_T8_STRIP39_DE_ENERGY -0.278885 0.0138417 +PISTA_T8_STRIP40_DE_ENERGY -0.300123 0.0137585 +PISTA_T8_STRIP41_DE_ENERGY -0.175396 0.0138097 +PISTA_T8_STRIP42_DE_ENERGY -0.338926 0.0135395 +PISTA_T8_STRIP43_DE_ENERGY -0.207305 0.0137983 +PISTA_T8_STRIP44_DE_ENERGY -0.309451 0.0136077 +PISTA_T8_STRIP45_DE_ENERGY -0.204008 0.0138009 +PISTA_T8_STRIP46_DE_ENERGY -0.425648 0.0136586 +PISTA_T8_STRIP47_DE_ENERGY -0.15719 0.0139958 +PISTA_T8_STRIP48_DE_ENERGY -0.358134 0.0136308 +PISTA_T8_STRIP49_DE_ENERGY -0.129097 0.0137054 +PISTA_T8_STRIP50_DE_ENERGY -0.378905 0.0137273 +PISTA_T8_STRIP51_DE_ENERGY -0.201049 0.0139 PISTA_T8_STRIP52_DE_ENERGY 0 1 -PISTA_T8_STRIP53_DE_ENERGY -0.0695817 0.0136946 +PISTA_T8_STRIP53_DE_ENERGY -0.207684 0.013842 PISTA_T8_STRIP54_DE_ENERGY 0 1 -PISTA_T8_STRIP55_DE_ENERGY -0.0621909 0.0137737 +PISTA_T8_STRIP55_DE_ENERGY -0.200195 0.0139219 PISTA_T8_STRIP56_DE_ENERGY 0 1 -PISTA_T8_STRIP57_DE_ENERGY -0.111057 0.0136798 +PISTA_T8_STRIP57_DE_ENERGY -0.249579 0.013827 PISTA_T8_STRIP58_DE_ENERGY 0 1 -PISTA_T8_STRIP59_DE_ENERGY -0.10558 0.0138329 +PISTA_T8_STRIP59_DE_ENERGY -0.244061 0.0139818 PISTA_T8_STRIP60_DE_ENERGY 0 1 -PISTA_T8_STRIP61_DE_ENERGY -0.106121 0.013789 +PISTA_T8_STRIP61_DE_ENERGY -0.244625 0.0139375 PISTA_T8_STRIP62_DE_ENERGY 0 1 -PISTA_T8_STRIP63_DE_ENERGY -0.037757 0.0137121 +PISTA_T8_STRIP63_DE_ENERGY -0.175548 0.0138598 PISTA_T8_STRIP64_DE_ENERGY 0 1 -PISTA_T8_STRIP65_DE_ENERGY -0.29912 0.0137954 -PISTA_T8_STRIP66_DE_ENERGY -0.0313839 0.0140155 -PISTA_T8_STRIP67_DE_ENERGY -0.260274 0.0137898 -PISTA_T8_STRIP68_DE_ENERGY -0.0883144 0.0136423 -PISTA_T8_STRIP69_DE_ENERGY -0.25245 0.0137762 -PISTA_T8_STRIP70_DE_ENERGY -0.0832343 0.0139425 -PISTA_T8_STRIP71_DE_ENERGY -0.232352 0.0136576 -PISTA_T8_STRIP72_DE_ENERGY 0.0127277 0.0138036 -PISTA_T8_STRIP73_DE_ENERGY -0.303506 0.0139113 -PISTA_T8_STRIP74_DE_ENERGY -0.0451028 0.0139225 -PISTA_T8_STRIP75_DE_ENERGY -0.31263 0.0138633 -PISTA_T8_STRIP76_DE_ENERGY 0.00116328 0.0138379 -PISTA_T8_STRIP77_DE_ENERGY -0.257767 0.0139325 -PISTA_T8_STRIP78_DE_ENERGY -0.0251754 0.013722 -PISTA_T8_STRIP79_DE_ENERGY -0.299361 0.0138255 -PISTA_T8_STRIP80_DE_ENERGY -0.0452748 0.013862 -PISTA_T8_STRIP81_DE_ENERGY -0.230995 0.0138562 -PISTA_T8_STRIP82_DE_ENERGY -0.0280058 0.0137381 -PISTA_T8_STRIP83_DE_ENERGY -0.305969 0.0136719 -PISTA_T8_STRIP84_DE_ENERGY -0.0529201 0.0137639 -PISTA_T8_STRIP85_DE_ENERGY -0.281673 0.0137306 -PISTA_T8_STRIP86_DE_ENERGY -0.0194097 0.0137294 -PISTA_T8_STRIP87_DE_ENERGY -0.323556 0.0137493 -PISTA_T8_STRIP88_DE_ENERGY -0.026438 0.0138393 -PISTA_T8_STRIP89_DE_ENERGY -0.275322 0.0136697 -PISTA_T8_STRIP90_DE_ENERGY -0.0190559 0.0139059 -PISTA_T8_STRIP91_DE_ENERGY -0.298048 0.0137778 +PISTA_T8_STRIP65_DE_ENERGY -0.439735 0.013944 +PISTA_T8_STRIP66_DE_ENERGY -0.169137 0.0141665 +PISTA_T8_STRIP67_DE_ENERGY -0.400497 0.0139384 +PISTA_T8_STRIP68_DE_ENERGY -0.22665 0.0137893 +PISTA_T8_STRIP69_DE_ENERGY -0.392559 0.0139245 +PISTA_T8_STRIP70_DE_ENERGY -0.221525 0.0140927 +PISTA_T8_STRIP71_DE_ENERGY -0.37226 0.0138047 +PISTA_T8_STRIP72_DE_ENERGY -0.124546 0.0139524 +PISTA_T8_STRIP73_DE_ENERGY -0.44417 0.0140611 +PISTA_T8_STRIP74_DE_ENERGY -0.182988 0.0140725 +PISTA_T8_STRIP75_DE_ENERGY -0.4534 0.0140126 +PISTA_T8_STRIP76_DE_ENERGY -0.136216 0.0139869 +PISTA_T8_STRIP77_DE_ENERGY -0.397951 0.0140826 +PISTA_T8_STRIP78_DE_ENERGY -0.162842 0.0138698 +PISTA_T8_STRIP79_DE_ENERGY -0.439949 0.0139743 +PISTA_T8_STRIP80_DE_ENERGY -0.183211 0.0140114 +PISTA_T8_STRIP81_DE_ENERGY -0.370896 0.0140055 +PISTA_T8_STRIP82_DE_ENERGY -0.165707 0.0138861 +PISTA_T8_STRIP83_DE_ENERGY -0.446662 0.0138192 +PISTA_T8_STRIP84_DE_ENERGY -0.190885 0.0139122 +PISTA_T8_STRIP85_DE_ENERGY -0.422109 0.0138786 +PISTA_T8_STRIP86_DE_ENERGY -0.157017 0.0138773 +PISTA_T8_STRIP87_DE_ENERGY -0.46441 0.0138973 +PISTA_T8_STRIP88_DE_ENERGY -0.164128 0.0139884 +PISTA_T8_STRIP89_DE_ENERGY -0.415685 0.013817 +PISTA_T8_STRIP90_DE_ENERGY -0.15666 0.0140557 +PISTA_T8_STRIP91_DE_ENERGY -0.438623 0.0139261 diff --git a/Projects/e850/Calibration/Energy/PISTA_BACK_E.cal b/Projects/e850/Calibration/Energy/PISTA_BACK_E.cal index 9d18d62ceb88b9e31524f4dc756199f55e96198d..f3a05ee83ea0008d384e5a8f879cc2b52b263652 100644 --- a/Projects/e850/Calibration/Energy/PISTA_BACK_E.cal +++ b/Projects/e850/Calibration/Energy/PISTA_BACK_E.cal @@ -1,8 +1,8 @@ -PISTA_T1_BACK_E 0.01 2.85e-3 -PISTA_T2_BACK_E 0.01 2.85e-3 -PISTA_T3_BACK_E 0.01 2.85e-3 -PISTA_T4_BACK_E 0.01 2.85e-3 -PISTA_T5_BACK_E 0.01 2.85e-3 -PISTA_T6_BACK_E 0.01 2.85e-3 -PISTA_T7_BACK_E 0.01 2.85e-3 -PISTA_T8_BACK_E 0.01 2.85e-3 +PISTA_T1_BACK_E 3.70858 0.00280224 +PISTA_T2_BACK_E 5.21355 0.00275928 +PISTA_T3_BACK_E 5.72436 0.00274927 +PISTA_T4_BACK_E 5.09622 0.00273566 +PISTA_T5_BACK_E 4.18408 0.00275902 +PISTA_T6_BACK_E 3.35113 0.00273201 +PISTA_T7_BACK_E 3.95686 0.00271846 +PISTA_T8_BACK_E 3.70584 0.00275683 diff --git a/Projects/e850/macro/Mass/FillHistoMass.C b/Projects/e850/macro/Mass/FillHistoMass.C new file mode 100644 index 0000000000000000000000000000000000000000..f2d303d66caffbf8dfc021b1751535aaa93d5758 --- /dev/null +++ b/Projects/e850/macro/Mass/FillHistoMass.C @@ -0,0 +1,139 @@ +TChain* chain; +TCutG* cut10Be[8]; + +///////////////////////////////////////////////////////////////// +void LoadCut(string part){ + string path = "cut/"+ part + "/cut10Be.root"; + TFile* fcut = new TFile(path.c_str()); + for(int i=0; i<8; i++){ + cut10Be[i] = (TCutG*)fcut->Get(Form("cut10Be_det%i",i+1)); + } +} + +///////////////////////////////////////////////////////////////// +void FillHistoMass(string part="part2"){ + + LoadCut(part); + + chain = new TChain("PhysicsTree"); + if(part=="part1"){ + chain->Add("../../root/analysis/run_28.root"); + chain->Add("../../root/analysis/run_29.root"); + chain->Add("../../root/analysis/run_30.root"); + chain->Add("../../root/analysis/run_31.root"); + chain->Add("../../root/analysis/run_32.root"); + chain->Add("../../root/analysis/run_36.root"); + chain->Add("../../root/analysis/run_37.root"); + chain->Add("../../root/analysis/run_39.root"); + chain->Add("../../root/analysis/run_40.root"); + chain->Add("../../root/analysis/run_41.root"); + chain->Add("../../root/analysis/run_42.root"); + chain->Add("../../root/analysis/run_43.root"); + chain->Add("../../root/analysis/run_44.root"); + chain->Add("../../root/analysis/run_45.root"); + chain->Add("../../root/analysis/run_46.root"); + chain->Add("../../root/analysis/run_48.root"); + chain->Add("../../root/analysis/run_49.root"); + chain->Add("../../root/analysis/run_50.root"); + chain->Add("../../root/analysis/run_51.root"); + chain->Add("../../root/analysis/run_52.root"); + chain->Add("../../root/analysis/run_53.root"); + } + else if(part=="part2"){ + chain->Add("../../root/analysis/run_55.root"); + chain->Add("../../root/analysis/run_56.root"); + chain->Add("../../root/analysis/run_57.root"); + chain->Add("../../root/analysis/run_58.root"); + chain->Add("../../root/analysis/run_59.root"); + chain->Add("../../root/analysis/run_60.root"); + chain->Add("../../root/analysis/run_61.root"); + chain->Add("../../root/analysis/run_62.root"); + chain->Add("../../root/analysis/run_63.root"); + chain->Add("../../root/analysis/run_64.root"); + chain->Add("../../root/analysis/run_65.root"); + chain->Add("../../root/analysis/run_66.root"); + chain->Add("../../root/analysis/run_67.root"); + chain->Add("../../root/analysis/run_68.root"); + chain->Add("../../root/analysis/run_69.root"); + } + double DeltaEcorr; + double Elab; + double Mass; + double Ex240Pu; + double fTS_TMW; + int Telescope; + + chain->SetBranchStatus("DeltaEcorr","true"); + chain->SetBranchAddress("DeltaEcorr",&DeltaEcorr); + chain->SetBranchStatus("Elab","true"); + chain->SetBranchAddress("Elab",&Elab); + chain->SetBranchStatus("Mass","true"); + chain->SetBranchAddress("Mass",&Mass); + chain->SetBranchStatus("Ex240Pu","true"); + chain->SetBranchAddress("Ex240Pu",&Ex240Pu); + chain->SetBranchStatus("fTS_TMW","true"); + chain->SetBranchAddress("fTS_TMW",&fTS_TMW); + chain->SetBranchStatus("Telescope","true"); + chain->SetBranchAddress("Telescope",&Telescope); + + + + TH1F *hmass[11]; + TH2F *hPID[8]; + for(int i=0; i<11; i++){ + TString histo_name = Form("hmass_%iMeV",i+6); + hmass[i] = new TH1F(histo_name, histo_name,1000,80,160); + } + for(int i=0; i<8; i++){ + TString histo_name = Form("PID_det%i",i+1); + hPID[i] = new TH2F(histo_name,histo_name,1000,0,200,1000,0,60); + } + //TH2F* hPID = new TH2F("PID","PID",1000,0,200,1000,0,60); + TH1F* hEx = new TH1F("Ex","Ex",500,0,20); + TH1F* hMassAll = new TH1F("hmass_all","hmass_all",1000,80,160); + + + int nentries = chain->GetEntries(); + cout << "**** Number of entries to be treated: " << nentries << " ****" << endl; + for(int i=0; i<nentries; i++){ + chain->GetEntry(i); + if(i%1000000==0){ + cout << "\033[34m\r Processing tree..." << (double)i/nentries*100 << "\% done" << flush; + } + + if(fTS_TMW>0){ + + if(Telescope>0) hPID[Telescope-1]->Fill(Elab,DeltaEcorr); + + if(cut10Be[Telescope-1]->IsInside(Elab,DeltaEcorr)){ + hEx->Fill(Ex240Pu); + hMassAll->Fill(Mass); + if(Ex240Pu>5.5 && Ex240Pu<6.5) hmass[0]->Fill(Mass); + else if(Ex240Pu>6.5 && Ex240Pu<7.5) hmass[1]->Fill(Mass); + else if(Ex240Pu>7.5 && Ex240Pu<8.5) hmass[2]->Fill(Mass); + else if(Ex240Pu>8.5 && Ex240Pu<9.5) hmass[3]->Fill(Mass); + else if(Ex240Pu>9.5 && Ex240Pu<10.5) hmass[4]->Fill(Mass); + else if(Ex240Pu>10.5 && Ex240Pu<11.5) hmass[5]->Fill(Mass); + else if(Ex240Pu>11.5 && Ex240Pu<12.5) hmass[6]->Fill(Mass); + else if(Ex240Pu>12.5 && Ex240Pu<13.5) hmass[7]->Fill(Mass); + else if(Ex240Pu>13.5 && Ex240Pu<14.5) hmass[8]->Fill(Mass); + else if(Ex240Pu>14.5 && Ex240Pu<15.5) hmass[9]->Fill(Mass); + else if(Ex240Pu>15.5 && Ex240Pu<16.5) hmass[10]->Fill(Mass); + } + } + } + + TString filename = Form("histo_mass_%s.root",part.c_str()); + TFile *ofile = new TFile(filename,"recreate"); + for(int i=0; i<11; i++){ + hmass[i]->Write(); + } + hEx->Write(); + hMassAll->Write(); + for(int i=0; i<8; i++) + hPID[i]->Write(); + ofile->Close(); + + + +} diff --git a/Projects/e850/macro/Mass/FitMass.C b/Projects/e850/macro/Mass/FitMass.C new file mode 100644 index 0000000000000000000000000000000000000000..f4f4b2978ba82adc88fe688996ecf5e1ab7f87bf --- /dev/null +++ b/Projects/e850/macro/Mass/FitMass.C @@ -0,0 +1,123 @@ +void Fit(TH1F* hmass, string Energy); +TFile* ofile; + +////////////////////////////////////////////////////// +void FitMass(){ + + TFile* ifile = new TFile("histo_mass_all.root","read"); + + ofile = new TFile("histo_mass_fitted.root","recreate"); + + for(int i=0; i<10; i++){ + int Ex = i+6; + string Energy = to_string(Ex) + "MeV"; + TString histo_name = Form("hmass_%iMeV",i+6); + TH1F* h1 = (TH1F*)ifile->FindObjectAny(histo_name); + Fit(h1,Energy); + } + + ofile->Close(); +} + +////////////////////////////////////////////////////// +void Fit(TH1F* hmass,string Energy){ + hmass->Rebin(2); + hmass->Draw(); + + TGraph* gyield = new TGraph(); + int Amin = 82; + int Amax = 153; + + int A = Amin; + + int NumberOfA = Amax - Amin; + Double_t para[3*NumberOfA]; + + TF1* g[NumberOfA]; + double Integral[NumberOfA]; + double Integral_err[NumberOfA]; + double total_integral = 0; + double Yield[NumberOfA]; + + for(int i=0; i<NumberOfA; i++){ + g[i] = new TF1(Form("g%i",i),"gaus",A-0.4,A+0.4); + g[i]->SetParLimits(0,0.1,20000); + g[i]->SetParLimits(1,A-0.1,A+0.1); + g[i]->SetParLimits(2,0.1,0.45); + + hmass->Fit(g[i],"qR"); + + g[i]->Draw("lsame"); + g[i]->GetParameters(¶[3*i]); + + A++; + + } + + + TString total_func = "gaus(0)"; + for(int i=1; i<NumberOfA; i++){ + TString gaus_func = Form("gaus(%i)",3*i); + total_func += "+" + gaus_func; + } + + TF1* total = new TF1("total",total_func,Amin-0.5, Amin+NumberOfA-0.5); + + A = Amin; + for(int i=0; i<NumberOfA; i++){ + total->SetParLimits(3*i+1,A-0.05,A+0.05); + total->SetParLimits(3*i+2,0.25,0.35); + A++; + } + total->SetParameters(para); + total->SetLineColor(4); + + hmass->Fit(total,"Rq"); + + A = Amin; + for(int i=0; i<NumberOfA; i++){ + + double Amplitude = total->GetParameter(3*i); + double mean = total->GetParameter(3*i+1); + double sigma = total->GetParameter(3*i+2); + double Amplitude_err = total->GetParError(3*i); + double sigma_err = total->GetParError(3*i+2); + + /*cout << "A= " << A << endl; + cout << "Amplitude= " << Amplitude << endl; + cout << "Mean= " << mean << endl; + cout << "Sigma= " << sigma << endl;*/ + + Integral[i] = Amplitude*sigma*sqrt(2*TMath::Pi()); + Integral_err[i] = sqrt(2*TMath::Pi()*(pow(sigma*Amplitude_err,2) + pow(Amplitude*sigma_err,2))); + //Integral_err[i] = sqrt(Integral[i]); + + + total_integral += Integral[i]; + A++; + } + + hmass->Write(); + total->Write(); + + string output_filename = "Mass_Yield_" + Energy + ".dat"; + ofstream ofile; + ofile.open(output_filename.c_str()); + + // Yield calculation // + A = Amin; + for(int i=0; i<NumberOfA; i++){ + Yield[i] = Integral[i]/total_integral*200; + gyield->SetPoint(i,A,Yield[i]); + double yield_err = Integral_err[i]/total_integral*200; + ofile << A << " " << Yield[i] << " " << yield_err << endl; + if(A==99) cout << "A=99 -> Y= " << Yield[i] << endl; + if(A==147) cout << "A=147 -> Y= " << Yield[i] << endl; + A++; + } + ofile.close(); + + gyield->SetMarkerStyle(8); + gyield->SetMarkerSize(1); + +} diff --git a/Projects/e850/macro/Mass/PlotYieldEvolution.C b/Projects/e850/macro/Mass/PlotYieldEvolution.C new file mode 100644 index 0000000000000000000000000000000000000000..eac2ab885981ff082aadd47a07b12515e0ea7d1e --- /dev/null +++ b/Projects/e850/macro/Mass/PlotYieldEvolution.C @@ -0,0 +1,24 @@ +void PlotYieldEvolution(int A_asked=147){ + int Energy[10] = {6,7,8,9,10,11,12,13,14,15}; + TGraphErrors* gevol = new TGraphErrors(); + + for(int i = 0; i<10; i++){ + ifstream ifile; + string input_filename = "Mass_Yield_" + to_string(Energy[i]) + "MeV.dat"; + ifile.open(input_filename.c_str()); + + int A; + double yield; + double yield_err; + while(ifile>>A>>yield>>yield_err){ + if(A==A_asked){ + gevol->SetPoint(i,Energy[i]-5.5,yield); + gevol->SetPointError(i,0,yield_err); + } + } + } + + gevol->SetMarkerStyle(8); + gevol->SetMarkerSize(1); + gevol->Draw("ap"); +} diff --git a/Projects/e850/macro/Mass/cut/Draw_cut.C b/Projects/e850/macro/Mass/cut/Draw_cut.C new file mode 100644 index 0000000000000000000000000000000000000000..cf336bf20713ce56a01ae6e8cd3985775e4eff19 --- /dev/null +++ b/Projects/e850/macro/Mass/cut/Draw_cut.C @@ -0,0 +1,35 @@ + +////////////////////////////////////////// +void Draw_cut() +{ + + TChain* chain = new TChain("PhysicsTree"); + chain->Add("../../../root/analysis/run_55.root"); + //TFile* histofile = new TFile("histo/histo_EQ1_lg.root"); + TFile* cutfile = new TFile("cut10Be.root","update"); + + TCanvas* c1 = new TCanvas("c1","c1",1200,1200); + + + for(int det_number=1; det_number<9; det_number++){ + TString to_draw = Form("DeltaEcorr:Elab>>h%i(1000,0,200,1000,0,60)",det_number); + TString condition = Form("fTS_TMW>0 && Telescope==%i",det_number); + + chain->Draw(to_draw,condition,"colz",5e7); + + TH2F *h = (TH2F*)gDirectory->FindObjectAny(Form("h%i",det_number)); + h->Draw("colz"); + + TCutG* cutg; + cutg = (TCutG*)gPad->WaitPrimitive("CUTG","CutG"); + cutg->SetName(Form("cut10Be_det%i",det_number)); + + cutfile->cd(); + cutg->Write(); + } + //histofile->Close(); + cutfile->Close(); + +} + +/////////////////////////////////////////