17#include "TVirtualMC.h"
19#include <TGeoMedium.h>
20#include <TGeoManager.h>
24#include <fairlogger/Logger.h>
30#include "rapidjson/document.h"
31#include "rapidjson/istreamwrapper.h"
32#include "rapidjson/ostreamwrapper.h"
33#include "rapidjson/prettywriter.h"
38namespace rj = rapidjson;
43template <
typename K,
typename V>
44void writeSingleJSONParamBatch(std::unordered_map<K, const char*>
const& idToName, std::map<K, V>
const& valMap, V defaultValue, rapidjson::Value& parent, rapidjson::Document::AllocatorType&
a)
46 for (
auto& itName : idToName) {
47 auto itVal = valMap.find(itName.first);
48 if (itVal != valMap.end()) {
49 parent.AddMember(rj::Value(itName.second, std::strlen(itName.second),
a), rj::Value(itVal->second),
a);
52 parent.AddMember(rj::Value(itName.second, std::strlen(itName.second),
a), rj::Value(defaultValue),
a);
57static constexpr const char* jsonKeyID =
"local_id";
58static constexpr const char* jsonKeyIDGlobal =
"global_id";
59static constexpr const char* jsonKeyDefault =
"default";
60static constexpr const char* jsonKeyCuts =
"cuts";
61static constexpr const char* jsonKeyProcesses =
"processes";
62static constexpr const char* jsonKeyEnableSpecialCuts =
"enableSpecialCuts";
63static constexpr const char* jsonKeyEnableSpecialProcesses =
"enableSpecialProcesses";
66const std::unordered_map<EProc, const char*> MaterialManager::mProcessIDToName = {
67 {EProc::kPAIR,
"PAIR"},
68 {EProc::kCOMP,
"COMP"},
69 {EProc::kPHOT,
"PHOT"},
70 {EProc::kPFIS,
"PFIS"},
71 {EProc::kDRAY,
"DRAY"},
72 {EProc::kANNI,
"ANNI"},
73 {EProc::kBREM,
"BREM"},
74 {EProc::kHADR,
"HADR"},
75 {EProc::kMUNU,
"MUNU"},
76 {EProc::kDCAY,
"DCAY"},
77 {EProc::kLOSS,
"LOSS"},
78 {EProc::kMULS,
"MULS"},
79 {EProc::kCKOV,
"CKOV"},
80 {EProc::kRAYL,
"RAYL"},
81 {EProc::kLABS,
"LABS"}};
83const std::unordered_map<ECut, const char*> MaterialManager::mCutIDToName = {
84 {ECut::kCUTGAM,
"CUTGAM"},
85 {ECut::kCUTELE,
"CUTELE"},
86 {ECut::kCUTNEU,
"CUTNEU"},
87 {ECut::kCUTHAD,
"CUTHAD"},
88 {ECut::kCUTMUO,
"CUTMUO"},
89 {ECut::kBCUTE,
"BCUTE"},
90 {ECut::kBCUTM,
"BCUTM"},
91 {ECut::kDCUTE,
"DCUTE"},
92 {ECut::kDCUTM,
"DCUTM"},
93 {ECut::kPPCUTM,
"PPCUTM"},
94 {ECut::kTOFMAX,
"TOFMAX"}};
97void MaterialManager::initDensityMap()
100 if (globalDensityFactor < 0) {
101 LOG(fatal) <<
"Negative value "
102 << globalDensityFactor
103 <<
" found for global material density!\n";
106 std::istringstream input(
108 std::vector<std::string> inputModuleNames;
109 std::vector<std::string> inputDensityValues;
110 while (std::getline(input, token,
',')) {
111 std::size_t
pos = token.find(
':');
112 inputModuleNames.push_back(token.substr(0,
pos));
113 inputDensityValues.push_back(token.substr(
pos + 1));
115 for (std::size_t
i = 0;
i < inputModuleNames.size();
i++) {
116 if (std::stof(inputDensityValues[
i]) < 0) {
117 LOG(fatal) <<
"Negative value " << std::stof(inputDensityValues[
i])
118 <<
" found for material density in module "
119 << inputModuleNames[
i] <<
"!\n";
121 mDensityMap[inputModuleNames[
i]] = std::stof(inputDensityValues[
i]);
123 mDensityMapInitialized =
true;
126float MaterialManager::getDensity(std::string
const& modname)
128 if (!mDensityMapInitialized) {
131 if (mDensityMap.find(modname) != mDensityMap.end()) {
132 return mDensityMap[modname];
140 TString uniquename = modname;
141 auto densityFactor = getDensity(modname);
142 uniquename.Append(
"_");
143 uniquename.Append(
name);
144 if (TVirtualMC::GetMC()) {
147 TVirtualMC::GetMC()->Material(kmat, uniquename.Data(),
a,
z,
148 dens * densityFactor, radl, absl,
buf, nwbuf);
149 mMaterialMap[modname][imat] = kmat;
150 insertMaterialName(uniquename.Data(), kmat);
152 auto uid = gGeoManager->GetListOfMaterials()->GetSize();
153 auto mat = gGeoManager->Material(uniquename.Data(),
a,
z,
154 dens * densityFactor, uid, radl, absl);
155 mMaterialMap[modname][imat] = uid;
156 insertMaterialName(uniquename.Data(), uid);
175 TString uniquename = modname;
176 auto densityFactor = getDensity(modname);
177 uniquename.Append(
"_");
178 uniquename.Append(
name);
180 if (TVirtualMC::GetMC()) {
183 TVirtualMC::GetMC()->Mixture(kmat, uniquename.Data(),
a,
z,
184 dens * densityFactor, nlmat, wmat);
185 mMaterialMap[modname][imat] = kmat;
186 insertMaterialName(uniquename.Data(), kmat);
189 auto uid = gGeoManager->GetListOfMaterials()->GetSize();
194 for (
i = 0;
i < nlmat;
i++) {
195 amol +=
a[
i] * wmat[
i];
197 for (
i = 0;
i < nlmat;
i++) {
198 wmat[
i] *=
a[
i] / amol;
201 auto mix = gGeoManager->Mixture(uniquename.Data(),
a,
z,
202 dens * densityFactor, nlmat, wmat, uid);
203 mMaterialMap[modname][imat] = uid;
204 insertMaterialName(uniquename.Data(), uid);
212 TString uniquename = modname;
213 uniquename.Append(
"_");
214 uniquename.Append(
name);
216 if (TVirtualMC::GetMC()) {
220 TVirtualMC::GetMC()->Medium(kmed, uniquename.Data(), kmat, isvol, ifield, fieldm, tmaxfd, stemax, deemax, epsil,
222 mMediumMap[modname][numed] = kmed;
223 insertMediumName(uniquename.Data(), kmed);
224 insertTGeoMedium(modname, numed);
226 auto uid = gGeoManager->GetListOfMedia()->GetSize();
227 auto med = gGeoManager->Medium(uniquename.Data(), uid,
getMaterialID(modname, nmat), isvol, ifield, fieldm, tmaxfd,
228 stemax, deemax, epsil, stmin);
229 mMediumMap[modname][numed] = uid;
230 insertMediumName(uniquename.Data(), uid);
231 insertTGeoMedium(modname, numed);
235void MaterialManager::Processes(ESpecial special,
int globalindex,
236 const std::initializer_list<std::pair<EProc, int>>& parIDValMap)
238 for (
auto&
m : parIDValMap) {
239 Process(special, globalindex,
m.first,
m.second);
243void MaterialManager::Cuts(ESpecial special,
int globalindex,
244 const std::initializer_list<std::pair<ECut, Float_t>>& parIDValMap)
246 for (
auto&
m : parIDValMap) {
247 Cut(special, globalindex,
m.first,
m.second);
251void MaterialManager::Cut(ESpecial special,
int globalindex,
ECut cut,
Float_t val)
259 LOG(info) <<
"Due to low energy neutrons, neutron cut value " <<
val <<
" discarded and reset to 5e-12";
263 auto it = mCutIDToName.find(cut);
264 if (it == mCutIDToName.end()) {
268 auto ins = mDefaultCutMap.insert({cut,
val});
270 TVirtualMC::GetMC()->SetCut(it->second,
val);
273 }
else if (mApplySpecialCuts) {
274 auto ins = mMediumCutMap[globalindex].insert({cut,
val});
276 TVirtualMC::GetMC()->Gstpar(globalindex, it->second,
val);
281void MaterialManager::Process(ESpecial special,
int globalindex,
EProc process,
int val)
287 auto it = mProcessIDToName.find(
process);
288 if (it == mProcessIDToName.end()) {
292 auto ins = mDefaultProcessMap.insert({
process,
val});
294 TVirtualMC::GetMC()->SetProcess(it->second,
val);
297 }
else if (mApplySpecialProcesses) {
298 auto ins = mMediumProcessMap[globalindex].insert({
process,
val});
300 TVirtualMC::GetMC()->Gstpar(globalindex, it->second,
val);
307 for (
auto& p : mMaterialMap) {
309 std::cout <<
"Materials for key " <<
name <<
"\n";
310 for (
auto& e : p.second) {
311 std::cout <<
"internal id " << e.first <<
" to " << e.second <<
"\n";
318 for (
auto& p : mMediumMap) {
320 std::cout <<
"Tracking media for key " <<
name <<
"\n";
321 for (
auto& e : p.second) {
323 std::cout << medname <<
" ";
324 std::cout <<
"internal id " << e.first <<
" to " << e.second <<
"\n";
331 stream <<
"Summary of process settings per media.\n";
332 stream <<
"-- Default process settings:\n";
333 for (
auto& p : mDefaultProcessMap) {
334 auto it = mProcessIDToName.find(p.first);
335 if (it != mProcessIDToName.end()) {
336 stream <<
"\t" << it->second <<
" = " << p.second <<
"\n";
339 if (mApplySpecialProcesses && mMediumProcessMap.size() > 0) {
340 stream <<
"-- Custom process settings for single media:\n";
341 for (
auto&
m : mMediumProcessMap) {
344 for (
auto& p :
m.second) {
345 auto it = mProcessIDToName.find(p.first);
346 if (it != mProcessIDToName.end()) {
347 stream <<
"\t" << it->second <<
" = " << p.second <<
"\n";
356 stream <<
"Summary of cut settings per media.\n";
357 stream <<
"-- Default cut settings:\n";
358 for (
auto&
c : mDefaultCutMap) {
359 auto it = mCutIDToName.find(
c.first);
360 if (it != mCutIDToName.end()) {
361 stream <<
"\t" << it->second <<
" = " <<
c.second <<
"\n";
364 if (mApplySpecialCuts && mMediumCutMap.size() > 0) {
365 stream <<
"-- Custom cut settings for single media:\n";
366 for (
auto&
m : mMediumCutMap) {
369 for (
auto&
c :
m.second) {
370 auto it = mCutIDToName.find(
c.first);
371 if (it != mCutIDToName.end()) {
372 stream <<
"\t" << it->second <<
" = " <<
c.second <<
"\n";
380void MaterialManager::insertMaterialName(
const char* uniquename,
int index)
382 assert(mMaterialNameToGlobalIndexMap.find(uniquename) == mMaterialNameToGlobalIndexMap.end());
383 mMaterialNameToGlobalIndexMap[uniquename] =
index;
387void MaterialManager::insertTGeoMedium(std::string modname,
int localindex)
389 auto p = std::make_pair(modname, localindex);
390 assert(mTGeoMediumMap.find(p) == mTGeoMediumMap.end());
391 auto list = gGeoManager->GetListOfMedia();
392 mTGeoMediumMap[p] = (TGeoMedium*)
list->At(
list->GetEntries() - 1);
394 LOG(
debug) <<
"mapping " << modname <<
" " << localindex <<
" to " << mTGeoMediumMap[p]->GetName();
397void MaterialManager::insertMediumName(
const char* uniquename,
int index)
399 assert(mMediumNameToGlobalIndexMap.find(uniquename) == mMediumNameToGlobalIndexMap.end());
400 mMediumNameToGlobalIndexMap[uniquename] =
index;
406 auto p = std::make_pair(modname, localindex);
407 auto iter = mTGeoMediumMap.find(p);
408 if (iter == mTGeoMediumMap.end()) {
409 LOG(warning) <<
"No medium registered for " << modname <<
" index " << localindex <<
"\n";
419 auto med = gGeoManager->GetMedium(mediumname);
420 assert(med !=
nullptr);
427 if (filenameIn.empty()) {
430 std::ifstream is(filenameIn);
432 LOG(fatal) <<
"Cannot open MC cuts/processes file " << filenameIn;
435 auto digestCutsFromJSON = [
this](
int globalindex, rj::Value& cuts) {
437 for (
auto& cut : cuts.GetObject()) {
438 auto name = cut.name.GetString();
440 for (
auto& cn : mCutIDToName) {
441 if (std::strcmp(
name, cn.second) == 0) {
442 Cut(special, globalindex, cn.first, cut.value.GetFloat());
447 LOG(warn) <<
"Unknown cut parameter " <<
name;
451 auto digestProcessesFromJSON = [
this](
int globalindex, rj::Value& processes) {
453 for (
auto& proc : processes.GetObject()) {
454 auto name = proc.name.GetString();
455 for (
auto& pn : mProcessIDToName) {
456 if (std::strcmp(
name, pn.second) == 0) {
457 Process(special, globalindex, pn.first, proc.value.GetInt());
463 rj::IStreamWrapper isw(is);
469 auto& defaultParams = d[jsonKeyDefault];
470 if (defaultParams.HasMember(jsonKeyCuts)) {
471 digestCutsFromJSON(-1, defaultParams[jsonKeyCuts]);
473 if (defaultParams.HasMember(jsonKeyProcesses)) {
474 digestProcessesFromJSON(-1, defaultParams[jsonKeyProcesses]);
478 if (d.HasMember(jsonKeyEnableSpecialCuts)) {
481 if (d.HasMember(jsonKeyEnableSpecialProcesses)) {
485 for (
auto&
m : d.GetObject()) {
486 if (
m.name.GetString()[0] ==
'\0' || !
m.value.IsArray()) {
490 for (
auto& batch :
m.value.GetArray()) {
491 if (std::strcmp(
m.name.GetString(), jsonKeyDefault) == 0) {
500 if (batch.HasMember(jsonKeyCuts)) {
501 digestCutsFromJSON(
index, batch[jsonKeyCuts]);
503 if (batch.HasMember(jsonKeyProcesses)) {
504 digestProcessesFromJSON(
index, batch[jsonKeyProcesses]);
514 if (filenameOut.empty()) {
519 std::ofstream os(filenameOut);
521 LOG(error) <<
"Cannot create file " << filenameOut;
526 rj::Document::AllocatorType&
a = d.GetAllocator();
530 for (
auto& itMed : mMediumMap) {
532 rj::Value toAdd(rj::kArrayType);
534 for (
auto& locToGlob : itMed.second) {
535 auto globalindex = locToGlob.second;
536 auto itCut = mMediumCutMap.find(globalindex);
537 auto itProc = mMediumProcessMap.find(globalindex);
539 rj::Value oLoc(rj::kObjectType);
541 oLoc.AddMember(rj::Value(jsonKeyID, std::strlen(jsonKeyID),
a), rj::Value(locToGlob.first),
a);
542 oLoc.AddMember(rj::Value(jsonKeyIDGlobal, std::strlen(jsonKeyIDGlobal)), rj::Value(locToGlob.second),
a);
544 auto mediumIt = mTGeoMediumMap.find({itMed.first, locToGlob.first});
545 const char* medName = mediumIt->second->GetName();
546 const char* matName = mediumIt->second->GetMaterial()->GetName();
548 oLoc.AddMember(rj::Value(
"medium_name", 11,
a), rj::Value(medName, std::strlen(medName),
a),
a);
549 oLoc.AddMember(rj::Value(
"material_name", 13,
a), rj::Value(matName, std::strlen(matName),
a),
a);
551 if (itCut != mMediumCutMap.end()) {
552 rj::Value cutMap(rj::kObjectType);
553 writeSingleJSONParamBatch(mCutIDToName, itCut->second, -1.f, cutMap,
a);
554 oLoc.AddMember(rj::Value(jsonKeyCuts, std::strlen(jsonKeyCuts),
a), cutMap,
a);
557 if (itProc != mMediumProcessMap.end()) {
558 rj::Value procMap(rj::kObjectType);
559 writeSingleJSONParamBatch(mProcessIDToName, itProc->second, -1, procMap,
a);
560 oLoc.AddMember(rj::Value(jsonKeyProcesses, std::strlen(jsonKeyProcesses),
a), procMap,
a);
563 toAdd.PushBack(oLoc,
a);
566 d.AddMember(rj::Value(itMed.first.c_str(), itMed.first.size(),
a), toAdd,
a);
569 rj::Value cutMapDef(rj::kObjectType);
570 rj::Value procMapDef(rj::kObjectType);
571 writeSingleJSONParamBatch(mCutIDToName, mDefaultCutMap, -1.f, cutMapDef,
a);
572 writeSingleJSONParamBatch(mProcessIDToName, mDefaultProcessMap, -1, procMapDef,
a);
573 rj::Value defaultParams(rj::kObjectType);
574 defaultParams.AddMember(rj::Value(jsonKeyCuts, std::strlen(jsonKeyCuts),
a), cutMapDef,
a);
575 defaultParams.AddMember(rj::Value(jsonKeyProcesses, std::strlen(jsonKeyProcesses),
a), procMapDef,
a);
576 d.AddMember(rj::Value(jsonKeyDefault, std::strlen(jsonKeyDefault),
a), defaultParams,
a);
578 d.AddMember(rj::Value(jsonKeyEnableSpecialCuts, std::strlen(jsonKeyEnableSpecialCuts),
a), rj::Value(mApplySpecialCuts),
a);
579 d.AddMember(rj::Value(jsonKeyEnableSpecialProcesses, std::strlen(jsonKeyEnableSpecialProcesses),
a), rj::Value(mApplySpecialProcesses),
a);
581 rj::OStreamWrapper osw(os);
582 rj::PrettyWriter<rj::OStreamWrapper> writer(osw);
583 writer.SetIndent(
' ', 2);
594 const int NCUTS = 10;
595 const int NFLAGS = 12;
626 if (!cutfile.is_open()) {
627 LOG(warn) <<
"File " <<
filename <<
" does not exist; Cannot apply cuts";
638 while (cutfile.getline(line, 256)) {
640 for (
int i = 0;
i < NCUTS;
i++) {
643 for (
int i = 0;
i < NFLAGS;
i++) {
646 if (strlen(line) == 0) {
650 if (line[0] ==
'*') {
654 iret = sscanf(line,
"%6s %d %f %f %f %f %f %f %f %f %f %f %d %d %d %d %d %d %d %d %d %d %d %d",
655 detName, &itmed, &cut[0], &cut[1], &cut[2], &cut[3], &cut[4], &cut[5], &cut[6], &cut[7], &cut[8],
656 &cut[9], &flag[0], &flag[1], &flag[2], &flag[3], &flag[4], &flag[5], &flag[6], &flag[7],
657 &flag[8], &flag[9], &flag[10], &flag[11]);
664 for (
int i = 0;
i < NCUTS; ++
i) {
671 for (
int i = 0;
i < NFLAGS - 1; ++
i) {
683 const std::initializer_list<std::pair<ECut, Float_t>>& parIDValMap)
685 int globalindex =
getMediumID(modname, localindex);
686 if (globalindex != -1) {
693 int globalindex =
getMediumID(modname, localindex);
694 if (globalindex != -1) {
697 LOG(warn) <<
"SpecialCut: NO GLOBALINDEX FOUND FOR " << modname <<
" " << localindex;
704 int globalindex =
getMediumID(modname, localindex);
705 if (globalindex != -1) {
708 LOG(warn) <<
"SpecialProcess: NO GLOBALINDEX FOUND FOR " << modname <<
" " << localindex;
714 auto lookupiter = mMaterialMap.find(modname);
715 if (lookupiter == mMaterialMap.end()) {
718 auto lookup = lookupiter->second;
720 auto iter =
lookup.find(imat);
721 if (iter !=
lookup.end()) {
729 auto lookupiter = mMediumMap.find(modname);
730 if (lookupiter == mMediumMap.end()) {
733 auto lookup = lookupiter->second;
735 auto iter =
lookup.find(imed);
736 if (iter !=
lookup.end()) {
748 auto lookupiter = mMediumMap.find(modname);
749 if (lookupiter == mMediumMap.end()) {
752 auto lookup = lookupiter->second;
755 auto maxkey =
lookup.rbegin()->first;
757 mapping.resize(maxkey + 1, -1);
760 mapping[p.first] = p.second;
767 mediumProcessVector.clear();
770 mediumProcessVector.resize(mMediumProcessMap.size(), -1);
772 for (
auto&
m : mMediumProcessMap) {
774 for (
auto& p :
m.second) {
777 mediumProcessVector[
m.first] = p.second;
787 mediumCutVector.clear();
790 mediumCutVector.resize(mMediumCutMap.size(), -1.);
792 for (
auto&
m : mMediumCutMap) {
794 for (
auto&
c :
m.second) {
796 if (
c.first == cut) {
797 mediumCutVector[
m.first] =
c.second;
807 processVector.clear();
808 for (
auto&
m : mDefaultProcessMap) {
809 processVector.emplace_back(
m.first,
m.second);
816 for (
auto&
m : mDefaultCutMap) {
817 cutVector.emplace_back(
m.first,
m.second);
823 processVector.clear();
824 if (mMediumProcessMap.find(globalindex) != mMediumProcessMap.end()) {
825 for (
auto&
m : mMediumProcessMap[globalindex]) {
826 processVector.emplace_back(
m.first,
m.second);
833 int globalindex =
getMediumID(modname, localindex);
834 if (globalindex != -1) {
842 if (mMediumCutMap.find(globalindex) != mMediumCutMap.end()) {
843 for (
auto&
m : mMediumCutMap[globalindex]) {
844 cutVector.emplace_back(
m.first,
m.second);
851 int globalindex =
getMediumID(modname, localindex);
852 if (globalindex != -1) {
860 for (
auto&
m : mMediumMap) {
861 for (
auto&
i :
m.second) {
863 if (
i.second == globalindex) {
866 return m.first.c_str();
879 for (
auto&
n : mMediumNameToGlobalIndexMap) {
880 if (
n.second == globalindex) {
883 return n.first.c_str();
893 auto vol = gGeoManager->FindVolumeFast(volumename.c_str());
894 if (vol ==
nullptr) {
895 LOG(warn) <<
"No volume found; Cannot query medias";
897 std::set<TGeoMedium const*> media;
901 std::function<
void(TGeoVolume
const* vol, std::set<TGeoMedium const*>& mediumset)> recursivevisitor;
902 recursivevisitor = [&recursivevisitor](TGeoVolume
const* vol, std::set<TGeoMedium const*>& mediumset) {
904 if (!vol->IsAssembly()) {
905 mediumset.insert(vol->GetMedium());
907 const int n = vol->GetNdaughters();
908 for (
int i = 0;
i <
n; ++
i) {
909 auto daughter = vol->GetNode(
i)->GetVolume();
910 recursivevisitor(daughter, mediumset);
913 recursivevisitor(vol, media);
916 for (
auto m : media) {
917 std::cout <<
m->GetName() <<
"\n";
uint8_t lookup(const char input) noexcept
void printCuts(std::ostream &stream) const
Print all cuts for all media as well as defaults.
void getSpecialCuts(int globalindex, std::vector< std::pair< ECut, Float_t > > &cutVector)
Get special cuts for global medium ID.
void SpecialCuts(const char *modname, int localindex, const std::initializer_list< std::pair< ECut, Float_t > > &parIDValMap)
void getMediumIDMappingAsVector(const char *modname, std::vector< int > &mapping) const
void getDefaultProcesses(std::vector< std::pair< EProc, int > > &processVector)
Fill vector with default processes.
void printProcesses(std::ostream &stream) const
Print all processes for all media as well as defaults.
void enableSpecialCuts(bool val=true)
void writeCutsAndProcessesToJSON(std::string const &filename="")
void loadCutsAndProcessesFromFile(const char *modname, const char *filename)
load cuts and process flags from a data file (like AliRoot did)
void loadCutsAndProcessesFromJSON(ESpecial special=ESpecial::kFALSE, std::string const &filename="")
void getMediaWithSpecialProcess(EProc process, std::vector< int > &mediumProcessVector) const
get global medium IDs where special process is set along with process value
int getMediumID(const char *modname, int imed) const
void getSpecialProcesses(int globalindex, std::vector< std::pair< EProc, int > > &processVector)
Get special processes for global medium ID.
const char * getMediumNameFromMediumID(int globalindex) const
Get medium name from global medium ID.
void getMediaWithSpecialCut(ECut cut, std::vector< Float_t > &mediumCutVector) const
get global medium IDs where special cut is set along with cut value
static void printContainingMedia(std::string const &volumename)
void Mixture(const char *modname, Int_t imat, const char *name, Float_t *a, Float_t *z, Float_t dens, Int_t nlmat, Float_t *wmat)
void SpecialProcess(const char *modname, int localindex, EProc parID, int val)
Custom setting of process or cut given parameter name and value.
void printMaterials() const
void Medium(const char *modname, Int_t numed, const char *name, Int_t nmat, Int_t isvol, Int_t ifield, Float_t fieldm, Float_t tmaxfd, Float_t stemax, Float_t deemax, Float_t epsil, Float_t stmin, Float_t *ubuf=nullptr, Int_t nbuf=0)
void SpecialCut(const char *modname, int localindex, ECut parID, Float_t val)
Custom setting of process or cut given parameter name and value.
void Material(const char *modname, Int_t imat, const char *name, Float_t a, Float_t z, Float_t dens, Float_t radl, Float_t absl, Float_t *buf=nullptr, Int_t nwbuf=0)
void enableSpecialProcesses(bool val=true)
Set flags whether to use special cuts and process settings.
const char * getModuleFromMediumID(int globalindex) const
Get module name which has medium of a certain global medium ID.
ESpecial
scoped enum to decide whether settings are done globally or for a certain medium
int getMaterialID(const char *modname, int imat) const
void getDefaultCuts(std::vector< std::pair< ECut, Float_t > > &cutVector)
Fill vector with default cuts.
TGeoMedium * getTGeoMedium(const std::string &modname, int localid)
static const SimMaterialParams & Instance()
GLuint const GLchar * name
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLboolean GLboolean GLboolean GLboolean a
GLenum GLuint GLenum GLsizei const GLchar * buf
GLdouble GLdouble GLdouble z
float globalDensityFactor
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"