Skip to content

Commit 72b3a9d

Browse files
committed
Undo bad commit - these changes are needed but should be in different MR
1 parent fa6ae4e commit 72b3a9d

File tree

5 files changed

+4
-21
lines changed

5 files changed

+4
-21
lines changed

Detectors/ITSMFT/ITS/postprocessing/studies/src/AvgClusSize.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ void AvgClusSizeStudy::prepareOutput()
266266

267267
void AvgClusSizeStudy::setStyle()
268268
{
269-
gStyle->SetPalette(kRainBow);
269+
gStyle->SetPalette(kRainbow);
270270
std::vector<int> colors = {1, 2, 3, 4, 6, 7, 41, 47};
271271
std::vector<int> markers = {2, 3, 4, 5, 25, 26, 27, 28, 32};
272272
for (int i = 0; i < mAvgClusSizeCEtaVec.size(); i++) {

Detectors/ITSMFT/test/HitAnalysis/src/HitAnalysis.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#include "HitAnalysis/HitAnalysis.h"
2121

2222
#include <fairlogger/Logger.h> // for LOG
23-
#include <FairRootManager.h>
2423

2524
#include <TH1.h> // for TH1, TH1D, TH1F
2625
#include <TFile.h>

Steer/include/Steer/O2RunSim.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class O2RunSim : public FairRunSim
6060
fRootManager->InitSink();
6161

6262
// original FairRunSim follows
63-
FairGeoLoader* loader = new FairGeoLoader(fLoaderName.Data(), "Geo Loader");
63+
FairGeoLoader* loader = new FairGeoLoader(fLoaderName->Data(), "Geo Loader");
6464
FairGeoInterface* GeoInterFace = loader->getGeoInterface();
6565
GeoInterFace->SetNoOfSets(ListOfModules->GetEntries());
6666
GeoInterFace->setMediaFile(MatFname.Data());

Utilities/rANS/benchmarks/bench_ransTPC.cxx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -378,15 +378,7 @@ int main(int argc, char* argv[])
378378
LOG(info) << "######################################################";
379379
});
380380
writer.EndObject();
381-
// Not implemented in all version of rapidjson 1.1.0 Seems like
382-
// rapidjson developers does not update version number when making
383-
// API changes - sigh.
384-
//
385-
// writer.Flush();
386-
//
387-
// We call flush on the output stream instead
388-
//
389-
stream.Flush();
381+
writer.Flush();
390382
of.close();
391383

392384
// writerFrequencies.EndObject();
@@ -395,4 +387,4 @@ int main(int argc, char* argv[])
395387
// writerRenormed.EndObject();
396388
// writerRenormed.Flush();
397389
// ofRenormed.close();
398-
};
390+
};

run/CMakeLists.txt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,6 @@ o2_add_executable(mctracks-to-aod
121121
SOURCES o2sim_mctracks_to_aod.cxx
122122
PUBLIC_LINK_LIBRARIES O2::Framework O2::SimulationDataFormat)
123123

124-
o2_add_executable(mc-to-hepmc
125-
COMPONENT_NAME aod
126-
SOURCES o2aod_mc_to_hepmc.cxx
127-
PUBLIC_LINK_LIBRARIES
128-
O2::Framework
129-
O2::SimulationDataFormat
130-
O2::Generators)
131-
132124
o2_add_dpl_workflow(mctracks-to-aod-simple-task
133125
SOURCES SimExamples/McTracksToAOD/mctracks_to_aod_simple_task.cxx
134126
PUBLIC_LINK_LIBRARIES O2::Framework

0 commit comments

Comments
 (0)