Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion Alignment/OfflineValidation/bin/BuildFile.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<flags CXXFLAGS="-g -Wall -O3 -Wall -std=c++17 -lASImage -lMultiProc" />
<flags CXXFLAGS="-Wall -O3 -Wall -lASImage -lMultiProc" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please keep the the debug symbols (and remove the duplicated -Wall).

<use name="Alignment/OfflineValidation"/>
<use name="boost" />
<use name="boost_filesystem"/>
Expand Down
2 changes: 1 addition & 1 deletion Alignment/OfflineValidation/macros/trackSplitPlot.C
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ TCanvas *trackSplitPlot(Int_t nFiles,
setAxisLabels(p[i], type, xvar, yvar, relative, pull);
}

if (type == Histogram && !pull && any_of(begin(used), end(used), identity<bool>)) {
if (type == Histogram && !pull && any_of(begin(used), end(used), ::identity<bool>)) {
if (legendOptions.Contains("mean")) {
summaryfile << " mu_Delta" << yvar;
if (relative)
Expand Down