Skip to content
Snippets Groups Projects

RadiationMapsMaker: added maps of mass fractions for all natural elements

Merged Sven Menke requested to merge menke/athena:21.0-RadMaps-add-massFractions into 21.0
All threads resolved!
4 files
+ 101
1
Compare changes
  • Side-by-side
  • Inline
Files
4
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef G4UserActions_RadiationMapsMaker_H
@@ -66,5+66,5 @@
int nBinslogT = 20;
double logTMin = -9.; // log10(t_cut/s); first bin for t < 1 ns
double logTMax = 11.; // log10(t_cut/s); last bin for t < 3169 a
// elements mass fraction maps
int elemZMin = 1; // minimum Z to keep mass fraction
int elemZMax = 92; // maximum Z to keep mass fraction
};
@@ -190,6 +194,13 @@ namespace G4UA
/// vector of time dependent TID in full 2d grid
std::vector<double> m_full_rz_tid_time;
// maps of element fractions
/// vector of element fractions in zoom 2d grid
std::vector<double> m_rz_element;
/// vector of element fractions in full 2d grid
std::vector<double> m_full_rz_element;
void merge(const Report& maps);
};
Loading