Print material properties verbosely for each step of geantino This function is useful for single shot scans.
100{
101
103 G4int matname_colwidth = 15;
104
106 oss << " Material Atomic properties (averaged) Radiation Interaction Integr. Lambda X0 Entry point Exit point\n name Mass Z density length length Thickness Thickness (cm) (cm)\n (g/mole) (g/cm3) (cm) (cm) (cm) (cm) \n";
108
109
110 std::ios::fmtflags os_flags (oss.flags());
111 for( auto & matInfo : shape_mat_info_v)
112 {
113 oss << std::setw(matname_colwidth) << std::left << matInfo.GetName(matname_colwidth) << " ";
114
115 oss << std::setw(colwidth) << std::fixed << std::setprecision(2) << matInfo.aveA / (CLHEP::g/CLHEP::mole);
116 oss << std::setw(colwidth) << std::fixed << std::setprecision(2) << matInfo.aveZ;
117 oss << std::setw(colwidth) << std::scientific << std::setprecision(2) << matInfo.density / (CLHEP::g/CLHEP::cm3);
118 oss << std::setw(colwidth) << std::scientific << matInfo.radiation_length / CLHEP::cm;
119 oss << std::setw(colwidth) << std::scientific << matInfo.interaction_length / CLHEP::cm;
120 oss << std::setw(colwidth) << std::scientific << matInfo.thickness/CLHEP::cm;
121 oss << std::setw(colwidth) << std::scientific << matInfo.integrated_thickness/CLHEP::cm;
122 oss << std::setw(colwidth) << std::scientific << matInfo.lambda;
123 oss << std::setw(colwidth) << std::scientific << matInfo.x0;
124 oss << std::setw(colwidth) << " ";
125 oss << std::scientific << std::right << "(";
126 oss << std::scientific << std::left << matInfo.entry_point.x()/CLHEP::cm;
127 oss << ", " << matInfo.entry_point.y()/CLHEP::cm;
128 oss << ", " << matInfo.entry_point.z()/CLHEP::cm << ")";
129 oss << std::setw(colwidth) << " ";
130 oss << std::scientific << std::right << "(";
131 oss << std::scientific << std::left << matInfo.exit_point.x()/CLHEP::cm;
132 oss << ", " << matInfo.exit_point.y()/CLHEP::cm;
133 oss << ", " << matInfo.exit_point.z()/CLHEP::cm << ")";
136 }
137 oss.flags(os_flags);
138}