Skip to content

Commit c8adefc

Browse files
authored
[PWGUD] upcCandidateProducerQa: Fix suffix and includes (#17755)
1 parent 50de001 commit c8adefc

2 files changed

Lines changed: 15 additions & 10 deletions

File tree

PWGUD/Tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ o2physics_add_dpl_workflow(upc-cand-analyzer
110110
COMPONENT_NAME Analysis)
111111

112112
o2physics_add_dpl_workflow(upc-cand-producer-qa
113-
SOURCES upcCandidateProducerQa.cpp
113+
SOURCES upcCandidateProducerQa.cxx
114114
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2::DetectorsBase
115115
COMPONENT_NAME Analysis)
116116

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,20 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#include "Framework/runDataProcessing.h"
13-
#include "Framework/AnalysisTask.h"
14-
#include "Framework/AnalysisDataModel.h"
15-
#include "Common/CCDB/EventSelectionParams.h"
16-
#include "Common/DataModel/EventSelection.h"
17-
#include "CommonConstants/LHCConstants.h"
18-
#include "PWGUD/Core/UPCCutparHolder.h"
19-
#include "PWGUD/Core/UPCHelpers.h"
20-
#include "PWGUD/DataModel/UDTables.h"
12+
#include <Framework/AnalysisDataModel.h>
13+
#include <Framework/AnalysisTask.h>
14+
#include <Framework/DataTypes.h>
15+
#include <Framework/HistogramRegistry.h>
16+
#include <Framework/HistogramSpec.h>
17+
#include <Framework/InitContext.h>
18+
#include <Framework/OutputObjHeader.h>
19+
#include <Framework/runDataProcessing.h>
20+
21+
#include <Rtypes.h>
22+
23+
#include <cstdint>
24+
#include <cstdlib>
25+
#include <unordered_set>
2126

2227
using namespace o2::framework;
2328
using namespace o2::framework::expressions;

0 commit comments

Comments
 (0)