Skip to content
Snippets Groups Projects
Commit 956901d4 authored by Pascal Raisig's avatar Pascal Raisig
Browse files

CbmTrdParSetGeo set log level fatal if no geoNodes are found

parent ad0683c7
No related branches found
No related tags found
1 merge request!6Port changes from svn-dev-mcbm2020
......@@ -36,8 +36,8 @@ Bool_t CbmTrdParSetGeo::Init()
TObjArray* nodes = topNode->GetNodes();
if (!nodes)
{
LOG(error) << "CbmTrdParSetGeo::Init: nodes is null!";
return kFALSE;
LOG(fatal) << "CbmTrdParSetGeo::Init: nodes is null!";
return kFALSE;
}
for (Int_t iNode = 0; iNode < nodes->GetEntriesFast(); iNode++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment