|
1 | | -// Copyright 2019-2020 CERN and copyright holders of ALICE O2. |
2 | | -// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. |
3 | | -// All rights not expressly granted are reserved. |
4 | | -// |
5 | | -// This software is distributed under the terms of the GNU General Public |
6 | | -// License v3 (GPL Version 3), copied verbatim in the file "COPYING". |
7 | | -// |
8 | | -// In applying this license CERN does not waive the privileges and immunities |
9 | | -// granted to it by virtue of its status as an Intergovernmental Organization |
10 | | -// or submit itself to any jurisdiction. |
11 | | - |
12 | 1 | /// \file eventSelection.cxx |
13 | 2 | /// \brief Event selection task |
14 | 3 | /// |
15 | 4 | /// \author Evgeny Kryshen <evgeny.kryshen@cern.ch> and Igor Altsybeev <Igor.Altsybeev@cern.ch> |
16 | 5 |
|
17 | | -#include "Common/DataModel/EventSelection.h" |
18 | | - |
19 | | -#include "MetadataHelper.h" |
| 6 | +#include <vector> |
| 7 | +#include <map> |
| 8 | +#include <string> |
| 9 | +#include <limits> |
20 | 10 |
|
| 11 | +#include "Framework/ConfigParamSpec.h" |
| 12 | +#include "Framework/runDataProcessing.h" |
| 13 | +#include "Framework/AnalysisTask.h" |
| 14 | +#include "Framework/AnalysisDataModel.h" |
| 15 | +#include "Common/DataModel/EventSelection.h" |
21 | 16 | #include "Common/CCDB/EventSelectionParams.h" |
22 | 17 | #include "Common/CCDB/TriggerAliases.h" |
23 | | - |
24 | 18 | #include "CCDB/BasicCCDBManager.h" |
25 | 19 | #include "CommonConstants/LHCConstants.h" |
26 | | -#include "DataFormatsCTP/Configuration.h" |
27 | | -#include "DataFormatsCTP/Scalers.h" |
| 20 | +#include "Framework/HistogramRegistry.h" |
28 | 21 | #include "DataFormatsFT0/Digit.h" |
29 | | -#include "DataFormatsITSMFT/NoiseMap.h" // missing include in TimeDeadMap.h |
30 | | -#include "DataFormatsITSMFT/TimeDeadMap.h" |
31 | | -#include "DataFormatsParameters/AggregatedRunInfo.h" |
32 | | -#include "DataFormatsParameters/GRPECSObject.h" |
33 | 22 | #include "DataFormatsParameters/GRPLHCIFData.h" |
34 | | -#include "Framework/AnalysisDataModel.h" |
35 | | -#include "Framework/AnalysisTask.h" |
36 | | -#include "Framework/ConfigParamSpec.h" |
37 | | -#include "Framework/HistogramRegistry.h" |
38 | | -#include "Framework/runDataProcessing.h" |
| 23 | +#include "DataFormatsParameters/GRPECSObject.h" |
39 | 24 | #include "ITSMFTBase/DPLAlpideParam.h" |
| 25 | +#include "MetadataHelper.h" |
| 26 | +#include "DataFormatsParameters/AggregatedRunInfo.h" |
| 27 | +#include "DataFormatsITSMFT/NoiseMap.h" // missing include in TimeDeadMap.h |
| 28 | +#include "DataFormatsITSMFT/TimeDeadMap.h" |
40 | 29 | #include "ITSMFTReconstruction/ChipMappingITS.h" |
| 30 | +#include "DataFormatsCTP/Configuration.h" |
| 31 | +#include "DataFormatsCTP/Scalers.h" |
41 | 32 |
|
42 | 33 | #include "TH1D.h" |
43 | 34 |
|
44 | | -#include <limits> |
45 | | -#include <map> |
46 | | -#include <string> |
47 | | -#include <vector> |
48 | | - |
49 | 35 | using namespace o2; |
50 | 36 | using namespace o2::framework; |
51 | 37 | using namespace o2::aod::evsel; |
@@ -1467,7 +1453,6 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
1467 | 1453 | { |
1468 | 1454 | // Parse the metadata |
1469 | 1455 | metadataInfo.initMetadata(cfgc); |
1470 | | - metadataInfo.print(); |
1471 | 1456 |
|
1472 | 1457 | return WorkflowSpec{ |
1473 | 1458 | adaptAnalysisTask<BcSelectionTask>(cfgc), |
|
0 commit comments