diff --git a/Processes/LongitudinalProfile/LongitudinalProfile.cc b/Processes/LongitudinalProfile/LongitudinalProfile.cc index a02e6e6217c0fbd00710a4a7a6f0394e3d1c1a94..08d7e3076138b32e2887bf6f81aaf34de11156ee 100644 --- a/Processes/LongitudinalProfile/LongitudinalProfile.cc +++ b/Processes/LongitudinalProfile/LongitudinalProfile.cc @@ -41,7 +41,13 @@ corsika::process::EProcessReturn LongitudinalProfile::DoContinuous(Particle cons const int binEnd = std::floor(grammageEnd / dX_); for (int b = binStart; b <= binEnd; ++b) { - if (pid == particles::Code::MuPlus) { + if (pid == particles::Code::Gamma) { + profiles_.at(b)[ProfileIndex::Gamma]++; + } else if (pid == particles::Code::Positron) { + profiles_.at(b)[ProfileIndex::Positron]++; + } else if (pid == particles::Code::Electron) { + profiles_.at(b)[ProfileIndex::Electron]++; + } else if (pid == particles::Code::MuPlus) { profiles_.at(b)[ProfileIndex::MuPlus]++; } else if (pid == particles::Code::MuMinus) { profiles_.at(b)[ProfileIndex::MuMinus]++; @@ -55,7 +61,7 @@ corsika::process::EProcessReturn LongitudinalProfile::DoContinuous(Particle cons void LongitudinalProfile::save(std::string const& filename) { std::ofstream f{filename}; - f << "# X / g·cm¯², mu+, mu-, all hadrons" << std::endl; + f << "# X / g·cm¯², gamma, e+, e-, mu+, mu-, all hadrons" << std::endl; for (size_t b = 0; b < profiles_.size(); ++b) { f << std::setprecision(5) << std::setw(11) << b * (dX_ / (1_g / 1_cm / 1_cm)); for (auto const& N : profiles_.at(b)) { diff --git a/Processes/LongitudinalProfile/LongitudinalProfile.h b/Processes/LongitudinalProfile/LongitudinalProfile.h index 4571757318a66914645160c0fcd00bb7c3670ba2..0e155a70c60abc84a6fb0e7132fba9d9fbbd802a 100644 --- a/Processes/LongitudinalProfile/LongitudinalProfile.h +++ b/Processes/LongitudinalProfile/LongitudinalProfile.h @@ -43,8 +43,15 @@ namespace corsika::process::longitudinal_profile { }); // profile binning environment::ShowerAxis const& shower_axis_; - using ProfileEntry = std::array<uint32_t, 3>; - enum ProfileIndex { MuPlus = 0, MuMinus = 1, Hadron = 2 }; + using ProfileEntry = std::array<uint32_t, 6>; + enum ProfileIndex { + Gamma = 0, + Positron = 1, + Electron = 2, + MuPlus = 3, + MuMinus = 4, + Hadron = 5 + }; std::vector<ProfileEntry> profiles_; // longitudinal profile static int const width_ = 14;