Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renaming endl to RESTendl and other logger functions #17

Merged
merged 1 commit into from
May 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions inc/TRestTrackAnalysisProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ class TRestTrackAnalysisProcess : public TRestEventProcess {

if (fCutsEnabled) {
std::cout << "Number of tracks in X cut : ( " << fNTracksXCut.X() << " , " << fNTracksXCut.Y()
<< " ) " << endl;
<< " ) " << std::endl;
std::cout << "Number of tracks in Y cut : ( " << fNTracksYCut.X() << " , " << fNTracksYCut.Y()
<< " ) " << endl;
<< " ) " << std::endl;
} else {
std::cout << endl;
std::cout << "No cuts have been enabled" << endl;
std::cout << std::endl;
std::cout << "No cuts have been enabled" << std::endl;
}

EndPrintProcess();
Expand Down
2 changes: 1 addition & 1 deletion inc/TRestTrackBlobAnalysisProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class TRestTrackBlobAnalysisProcess : public TRestEventProcess {
void PrintMetadata() override {
BeginPrintProcess();

metadata << " Hits to check factor : " << fHitsToCheckFraction << endl;
RESTMetadata << " Hits to check factor : " << fHitsToCheckFraction << RESTendl;

EndPrintProcess();
}
Expand Down
2 changes: 1 addition & 1 deletion inc/TRestTrackLinearizationProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TRestTrackLinearizationProcess : public TRestEventProcess {

void PrintMetadata() override {
BeginPrintProcess();
metadata << "Max nodes: " << fMaxNodes << endl;
RESTMetadata << "Max nodes: " << fMaxNodes << RESTendl;
EndPrintProcess();
}

Expand Down
6 changes: 3 additions & 3 deletions inc/TRestTrackPathMinimizationProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ class TRestTrackPathMinimizationProcess : public TRestEventProcess {
// fMaxNodes << endl;

if (fWeightHits)
metadata << "Weight hits : enabled" << endl;
RESTMetadata << "Weight hits : enabled" << RESTendl;
else
metadata << "Weight hits : disabled" << endl;
RESTMetadata << "Weight hits : disabled" << RESTendl;

metadata << "Minimization method " << fMinMethod << endl;
RESTMetadata << "Minimization method " << fMinMethod << RESTendl;
EndPrintProcess();
}

Expand Down
8 changes: 4 additions & 4 deletions inc/TRestTrackReconnectionProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ class TRestTrackReconnectionProcess : public TRestEventProcess {
void PrintMetadata() override {
BeginPrintProcess();

metadata << "Split track : ";
RESTMetadata << "Split track : ";
if (fSplitTrack)
metadata << " enabled" << endl;
RESTMetadata << " enabled" << RESTendl;
else
metadata << " disabled" << endl;
RESTMetadata << " disabled" << RESTendl;

metadata << "Number of sigmas to defined a branch : " << fNSigmas << endl;
RESTMetadata << "Number of sigmas to defined a branch : " << fNSigmas << RESTendl;

EndPrintProcess();
}
Expand Down
12 changes: 6 additions & 6 deletions inc/TRestTrackReductionProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ class TRestTrackReductionProcess : public TRestEventProcess {
void PrintMetadata() override {
BeginPrintProcess();

metadata << " Starting distance : " << fStartingDistance << endl;
metadata << " Minimum distance : " << fMinimumDistance << endl;
metadata << " Distance step factor : " << fDistanceStepFactor << endl;
metadata << " Maximum number of nodes : " << fMaxNodes << endl;
metadata << " Perform kMeans clustering : " << fKmeans << endl;
if (fKmeans) metadata << " Maximum iterations : " << fMaxIt << endl;
RESTMetadata << " Starting distance : " << fStartingDistance << RESTendl;
RESTMetadata << " Minimum distance : " << fMinimumDistance << RESTendl;
RESTMetadata << " Distance step factor : " << fDistanceStepFactor << RESTendl;
RESTMetadata << " Maximum number of nodes : " << fMaxNodes << RESTendl;
RESTMetadata << " Perform kMeans clustering : " << fKmeans << RESTendl;
if (fKmeans) RESTMetadata << " Maximum iterations : " << fMaxIt << RESTendl;

EndPrintProcess();
}
Expand Down
2 changes: 1 addition & 1 deletion inc/TRestTrackViewerProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class TRestTrackViewerProcess : public TRestEventProcess {
void PrintMetadata() override {
BeginPrintProcess();

metadata << "Draw Origin End : " << fDrawOriginEnd << endl;
RESTMetadata << "Draw Origin End : " << fDrawOriginEnd << RESTendl;

EndPrintProcess();
}
Expand Down
16 changes: 8 additions & 8 deletions src/TRestTrackAnalysisProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ TRestEvent* TRestTrackAnalysisProcess::ProcessEvent(TRestEvent* inputEvent) {
for (int tck = 0; tck < fInputTrackEvent->GetNumberOfTracks(); tck++)
fOutputTrackEvent->AddTrack(fInputTrackEvent->GetTrack(tck));

if (this->GetVerboseLevel() >= REST_Debug) fInputTrackEvent->PrintOnlyTracks();
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) fInputTrackEvent->PrintOnlyTracks();

/* {{{ Number of tracks observables */
Int_t nTracksX = 0, nTracksY = 0, nTracksXYZ = 0;
Expand Down Expand Up @@ -872,8 +872,8 @@ TRestEvent* TRestTrackAnalysisProcess::ProcessEvent(TRestEvent* inputEvent) {
tckMaxXYZ_SigmaX = fInputTrackEvent->GetMaxEnergyTrack()->GetHits()->GetSigmaX();
tckMaxXYZ_SigmaY = fInputTrackEvent->GetMaxEnergyTrack()->GetHits()->GetSigmaY();
tckMaxXYZ_SigmaZ = fInputTrackEvent->GetMaxEnergyTrack()->GetHits()->GetSigmaZ2();
debug << "id: " << fInputTrackEvent->GetID() << " " << fInputTrackEvent->GetSubEventTag()
<< " tckMaxEnXYZ: " << tckMaxEnXYZ << endl;
RESTDebug << "id: " << fInputTrackEvent->GetID() << " " << fInputTrackEvent->GetSubEventTag()
<< " tckMaxEnXYZ: " << tckMaxEnXYZ << RESTendl;
tckMaxXYZ_gausSigmaX = fInputTrackEvent->GetMaxEnergyTrack()->GetHits()->GetGaussSigmaX();
tckMaxXYZ_gausSigmaY = fInputTrackEvent->GetMaxEnergyTrack()->GetHits()->GetGaussSigmaY();
tckMaxXYZ_gausSigmaZ = fInputTrackEvent->GetMaxEnergyTrack()->GetHits()->GetGaussSigmaZ();
Expand All @@ -892,8 +892,8 @@ TRestEvent* TRestTrackAnalysisProcess::ProcessEvent(TRestEvent* inputEvent) {
tckMaxXZ_SigmaZ = fInputTrackEvent->GetMaxEnergyTrack("X")->GetHits()->GetSigmaZ2();
tckMaxXZ_gausSigmaX = fInputTrackEvent->GetMaxEnergyTrack("X")->GetHits()->GetGaussSigmaX();
tckMaxXZ_gausSigmaZ_XZ = fInputTrackEvent->GetMaxEnergyTrack("X")->GetHits()->GetGaussSigmaZ();
debug << "id: " << fInputTrackEvent->GetID() << " " << fInputTrackEvent->GetSubEventTag()
<< " tckMaxEnX: " << tckMaxEnX << endl;
RESTDebug << "id: " << fInputTrackEvent->GetID() << " " << fInputTrackEvent->GetSubEventTag()
<< " tckMaxEnX: " << tckMaxEnX << RESTendl;
}

SetObservableValue((string) "MaxTrackEnergy_X", tckMaxEnX);
Expand All @@ -908,8 +908,8 @@ TRestEvent* TRestTrackAnalysisProcess::ProcessEvent(TRestEvent* inputEvent) {
tckMaxYZ_SigmaZ = fInputTrackEvent->GetMaxEnergyTrack("Y")->GetHits()->GetSigmaZ2();
tckMaxYZ_gausSigmaY = fInputTrackEvent->GetMaxEnergyTrack("Y")->GetHits()->GetGaussSigmaY();
tckMaxYZ_gausSigmaZ_YZ = fInputTrackEvent->GetMaxEnergyTrack("Y")->GetHits()->GetGaussSigmaZ();
debug << "id: " << fInputTrackEvent->GetID() << " " << fInputTrackEvent->GetSubEventTag()
<< " tckMaxEnY: " << tckMaxEnY << endl;
RESTDebug << "id: " << fInputTrackEvent->GetID() << " " << fInputTrackEvent->GetSubEventTag()
<< " tckMaxEnY: " << tckMaxEnY << RESTendl;
}

SetObservableValue((string) "MaxTrackEnergy_Y", tckMaxEnY);
Expand Down Expand Up @@ -1210,7 +1210,7 @@ TRestEvent* TRestTrackAnalysisProcess::ProcessEvent(TRestEvent* inputEvent) {
if (nTracksY < fNTracksYCut.X() || nTracksY > fNTracksYCut.Y()) return nullptr;
}

if (GetVerboseLevel() >= REST_Extreme) GetChar();
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Extreme) GetChar();

return fOutputTrackEvent;
}
Expand Down
10 changes: 5 additions & 5 deletions src/TRestTrackDetachIsolatedNodesProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ void TRestTrackDetachIsolatedNodesProcess::InitProcess() {}
TRestEvent* TRestTrackDetachIsolatedNodesProcess::ProcessEvent(TRestEvent* inputEvent) {
fInputTrackEvent = (TRestTrackEvent*)inputEvent;

if (this->GetVerboseLevel() >= REST_Debug)
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug)
cout << "TRestTrackDetachIsolatedNodesProcess. Number of tracks : "
<< fInputTrackEvent->GetNumberOfTracks() << endl;

if (GetVerboseLevel() >= REST_Debug) fInputTrackEvent->PrintEvent();
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) fInputTrackEvent->PrintEvent();

// Copying the input tracks to the output track
for (int tck = 0; tck < fInputTrackEvent->GetNumberOfTracks(); tck++)
Expand All @@ -72,7 +72,7 @@ TRestEvent* TRestTrackDetachIsolatedNodesProcess::ProcessEvent(TRestEvent* input

/* {{{ Debug output */

if (this->GetVerboseLevel() >= REST_Debug) {
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) {
Int_t pId = fInputTrackEvent->GetTrack(tck)->GetParentID();
cout << "Track : " << tck << " TrackID : " << tckId << " ParentID : " << pId << endl;
cout << "-----------------" << endl;
Expand Down Expand Up @@ -108,7 +108,7 @@ TRestEvent* TRestTrackDetachIsolatedNodesProcess::ProcessEvent(TRestEvent* input
hitConnectivity += originHits->GetEnergyInCylinder(pos0, pos1, fTubeRadius);
}

if (GetVerboseLevel() >= REST_Debug)
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug)
cout << "Hit : " << n << " Connectivity : " << hitConnectivity
<< " distance : " << distance / 2. << endl;

Expand Down Expand Up @@ -145,7 +145,7 @@ TRestEvent* TRestTrackDetachIsolatedNodesProcess::ProcessEvent(TRestEvent* input
fOutputTrackEvent->AddTrack(&connectedTrack);
}

if (GetVerboseLevel() >= REST_Debug) {
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) {
cout << "xxxx DetachIsolatedNodes trackEvent output xxxxx" << endl;
fOutputTrackEvent->PrintEvent();
cout << "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" << endl;
Expand Down
6 changes: 3 additions & 3 deletions src/TRestTrackLineAnalysisProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ TRestEvent* TRestTrackLineAnalysisProcess::ProcessEvent(TRestEvent* inputEvent)
// Retreive origin and end of the track for the XZ projection
fTrackEvent->GetMaxTrackBoundaries(orig, end);

debug << "Origin: " << orig.X() << " y: " << orig.Y() << " z: " << orig.Z() << endl;
debug << "End : " << end.X() << " y: " << end.Y() << " z: " << end.Z() << endl;
RESTDebug << "Origin: " << orig.X() << " y: " << orig.Y() << " z: " << orig.Z() << RESTendl;
RESTDebug << "End : " << end.X() << " y: " << end.Y() << " z: " << end.Z() << RESTendl;

// Compute some observables
double dX = (orig.X() - end.X());
Expand All @@ -155,7 +155,7 @@ TRestEvent* TRestTrackLineAnalysisProcess::ProcessEvent(TRestEvent* inputEvent)
angle = TMath::ACos(dZ / length);
downwards = dZ > 0;

debug << "Track length " << length << " angle: " << angle << endl;
RESTDebug << "Track length " << length << " angle: " << angle << RESTendl;

trackEnergyX = tckX->GetEnergy();
trackEnergyY = tckY->GetEnergy();
Expand Down
30 changes: 15 additions & 15 deletions src/TRestTrackLinearizationProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,20 @@ TRestEvent* TRestTrackLinearizationProcess::ProcessEvent(TRestEvent* inputEvent)
GetHitsProjection(hits, fMaxNodes, vHits);
if (vHits.GetNumberOfHits() == 0) continue;

debug << "Adding track " << endl;
RESTDebug << "Adding track " << RESTendl;
// Store tracks after tinearization
TRestTrack newTrack;
newTrack.SetTrackID(fOutTrackEvent->GetNumberOfTracks() + 1);
newTrack.SetParentID(track->GetTrackID());
newTrack.SetVolumeHits(vHits);

debug << "Is XZ " << newTrack.isXZ() << " Is YZ " << newTrack.isYZ() << endl;
RESTDebug << "Is XZ " << newTrack.isXZ() << " Is YZ " << newTrack.isYZ() << RESTendl;

fOutTrackEvent->AddTrack(&newTrack);
}

debug << "NTracks X " << fOutTrackEvent->GetNumberOfTracks("X") << " Y "
<< fOutTrackEvent->GetNumberOfTracks("Y") << " " << fOutTrackEvent->GetNumberOfTracks("X") << endl;
RESTDebug << "NTracks X " << fOutTrackEvent->GetNumberOfTracks("X") << " Y "
<< fOutTrackEvent->GetNumberOfTracks("Y") << " " << fOutTrackEvent->GetNumberOfTracks("X") << RESTendl;

fOutTrackEvent->SetLevels();
return fOutTrackEvent;
Expand All @@ -143,7 +143,7 @@ void TRestTrackLinearizationProcess::GetHitsProjection(TRestVolumeHits* hits, co
const REST_HitType hType = hits->GetType(0);
vHits.RemoveHits();

debug << "NHits " << nHits << " hits Type " << hType << endl;
RESTDebug << "NHits " << nHits << " hits Type " << hType << RESTendl;

if (hType == XZ) {
auto cl = GetBestNodes(hits->fX, hits->fZ, hits->fEnergy, nodes);
Expand All @@ -161,16 +161,16 @@ void TRestTrackLinearizationProcess::GetHitsProjection(TRestVolumeHits* hits, co
vHits.AddHit(xy, z, hits->GetZ(0), 0, 0, hType, 0, 0, 0);
}
} else {
warning << "Track linearization not implemented for XYZ tracks" << endl;
RESTWarning << "Track linearization not implemented for XYZ tracks" << RESTendl;
return;
}

TRestVolumeHits::kMeansClustering(hits, vHits, 1);

if (GetVerboseLevel() >= REST_Debug)
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug)
for (int i = 0; i < vHits.GetNumberOfHits(); i++)
debug << i << " " << vHits.GetX(i) << " " << vHits.GetY(i) << " " << vHits.GetZ(i) << " "
<< vHits.GetType(i) << endl;
RESTDebug << i << " " << vHits.GetX(i) << " " << vHits.GetY(i) << " " << vHits.GetZ(i) << " "
<< vHits.GetType(i) << RESTendl;
}

///////////////////////////////////////////////
Expand All @@ -192,8 +192,8 @@ std::vector<std::pair<double, double>> TRestTrackLinearizationProcess::GetBestNo
double totEn = 0;
for (const auto& en : fEn) totEn += en;

debug << "Max " << max[0] << " " << max[1] << endl;
debug << "Min " << min[0] << " " << min[1] << endl;
RESTDebug << "Max " << max[0] << " " << max[1] << RESTendl;
RESTDebug << "Min " << min[0] << " " << min[1] << RESTendl;

TGraph gr[2];

Expand All @@ -208,15 +208,15 @@ std::vector<std::pair<double, double>> TRestTrackLinearizationProcess::GetBestNo
}
}

debug << "Points graph " << c << " Hits " << nHits << endl;
RESTDebug << "Points graph " << c << " Hits " << nHits << RESTendl;

int bestIndex = 0;
double bestFit;
double slope;
double intercept;

std::string fitOpt = "";
if (GetVerboseLevel() < REST_Debug) fitOpt = "Q";
if (GetVerboseLevel() < TRestStringOutput::REST_Verbose_Level::REST_Debug) fitOpt = "Q";

for (int l = 0; l < 2; l++) {
TF1 f1("f1", "[0] * x + [1]", min[l], max[l]);
Expand All @@ -236,8 +236,8 @@ std::vector<std::pair<double, double>> TRestTrackLinearizationProcess::GetBestNo
}
}

debug << "Best fit " << bestFit << " " << bestIndex << endl;
debug << "Slope " << slope << " Intercept " << intercept << endl;
RESTDebug << "Best fit " << bestFit << " " << bestIndex << RESTendl;
RESTDebug << "Slope " << slope << " Intercept " << intercept << RESTendl;

std::vector<std::pair<double, double>> cluster(nodes);
for (int i = 0; i < nodes; i++) {
Expand Down
22 changes: 11 additions & 11 deletions src/TRestTrackPathMinimizationProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void TRestTrackPathMinimizationProcess::InitProcess() {}
TRestEvent* TRestTrackPathMinimizationProcess::ProcessEvent(TRestEvent* inputEvent) {
fInputTrackEvent = (TRestTrackEvent*)inputEvent;

if (this->GetVerboseLevel() >= REST_Debug)
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug)
cout << "TRestTrackPathMinimizationProcess. Number of tracks : "
<< fInputTrackEvent->GetNumberOfTracks() << endl;

Expand All @@ -47,7 +47,7 @@ TRestEvent* TRestTrackPathMinimizationProcess::ProcessEvent(TRestEvent* inputEve
const int nHits = hits->GetNumberOfHits();

/* {{{ Debug output */
if (this->GetVerboseLevel() >= REST_Debug) {
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) {
Int_t pId = fInputTrackEvent->GetTrack(tck)->GetParentID();
cout << "Track : " << tck << " TrackID : " << tckId << " ParentID : " << pId << endl;
cout << "-----------------" << endl;
Expand All @@ -56,7 +56,7 @@ TRestEvent* TRestTrackPathMinimizationProcess::ProcessEvent(TRestEvent* inputEve
}
/* }}} */

debug << "hits : " << nHits << endl;
RESTDebug << "hits : " << nHits << RESTendl;

std::vector<int> bestPath(nHits);
for (int i = 0; i < nHits; i++) bestPath[i] = i; // Initialize
Expand Down Expand Up @@ -91,7 +91,7 @@ TRestEvent* TRestTrackPathMinimizationProcess::ProcessEvent(TRestEvent* inputEve
void TRestTrackPathMinimizationProcess::NearestNeighbour(TRestVolumeHits* hits, std::vector<int>& bestPath) {
const int nHits = hits->GetNumberOfHits();
double dist[nHits][nHits];
debug << "Nhits " << nHits << endl;
RESTDebug << "Nhits " << nHits << RESTendl;

if (nHits < 3) return;

Expand Down Expand Up @@ -152,7 +152,7 @@ void TRestTrackPathMinimizationProcess::NearestNeighbour(TRestVolumeHits* hits,
}
}

if (this->GetVerboseLevel() >= REST_Debug) {
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) {
cout << "Min path ";
for (const auto& v : bestPath) cout << v << " ";
cout << " " << min_path << endl;
Expand All @@ -167,7 +167,7 @@ void TRestTrackPathMinimizationProcess::NearestNeighbour(TRestVolumeHits* hits,
void TRestTrackPathMinimizationProcess::BruteForce(TRestVolumeHits* hits, std::vector<int>& bestPath) {
const int nHits = hits->GetNumberOfHits();
double dist[nHits][nHits];
debug << "Nhits " << nHits << endl;
RESTDebug << "Nhits " << nHits << RESTendl;

if (nHits < 3) return;

Expand All @@ -182,7 +182,7 @@ void TRestTrackPathMinimizationProcess::BruteForce(TRestVolumeHits* hits, std::v
}
}

if (this->GetVerboseLevel() >= REST_Debug) {
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) {
for (int i = 0; i < nHits; i++) {
for (int j = 0; j < nHits; j++) {
cout << dist[i][j] << " ";
Expand Down Expand Up @@ -230,7 +230,7 @@ void TRestTrackPathMinimizationProcess::BruteForce(TRestVolumeHits* hits, std::v
} while (std::next_permutation(vertex.begin(), vertex.end()));
}

if (this->GetVerboseLevel() >= REST_Debug) {
if (this->GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Debug) {
cout << "Min path ";
for (const auto& v : bestPath) cout << v << " ";
cout << " " << min_path << endl;
Expand Down Expand Up @@ -325,7 +325,7 @@ void TRestTrackPathMinimizationProcess::HeldKarp(TRestVolumeHits* hits, std::vec
GetChar();
*/

if (GetVerboseLevel() >= REST_Extreme) {
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Extreme) {
for (int n = 0; n < segment_count; n++) cout << "n : " << n << " elen : " << elen[n] << endl;
GetChar();
}
Expand Down Expand Up @@ -358,10 +358,10 @@ void TRestTrackPathMinimizationProcess::HeldKarp(TRestVolumeHits* hits, std::vec
free(elen);
// free( enBetween );

if (GetVerboseLevel() >= REST_Extreme) GetChar();
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Extreme) GetChar();

if (rval != 0) {
if (GetVerboseLevel() >= REST_Warning) {
if (GetVerboseLevel() >= TRestStringOutput::REST_Verbose_Level::REST_Warning) {
cout << "REST WARNING. TRestTrackPathMinimizationProcess. HELDKARP FAILED." << endl;
}
fOutputTrackEvent->SetOK(false);
Expand Down
Loading