Skip to content

Commit c3dcdbc

Browse files
sstiefel19Stephan Stiefelmaier
andauthored
PWGEM move gammaConv related files to new destinations within PWGEM/PhotonMeson/ (AliceO2Group#820)
Co-authored-by: Stephan Stiefelmaier <stiefelmaier@physi.uni-heidelberg.de>
1 parent be39bdd commit c3dcdbc

10 files changed

Lines changed: 49 additions & 29 deletions

PWGEM/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# or submit itself to any jurisdiction.
1111

1212
# add_subdirectory(Dilepton)
13-
# add_subdirectory(PhotonMeson)
1413

14+
add_subdirectory(PhotonMeson)
1515
add_subdirectory(Tasks)
1616

PWGEM/PhotonMeson/CMakeLists.txt

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

12-
# add_subdirectory(Core)
13-
# add_subdirectory(DataModel)
14-
# add_subdirectory(Tasks)
15-
# add_subdirectory(TableProducer)
12+
#add_subdirectory(Core)
13+
#add_subdirectory(DataModel)
1614

15+
add_subdirectory(Tasks)
16+
add_subdirectory(TableProducer)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
o2physics_add_dpl_workflow(skimmergammaconversions
13+
SOURCES skimmerGammaConversions.cxx
14+
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
15+
COMPONENT_NAME Analysis)
16+
17+
o2physics_add_dpl_workflow(skimmergammaconversionstruthonlymc
18+
SOURCES skimmerGammaConversionsTruthOnlyMc.cxx
19+
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
20+
COMPONENT_NAME Analysis)

PWGEM/Tasks/skimmerGammaConversions.cxx renamed to PWGEM/PhotonMeson/TableProducer/skimmerGammaConversions.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// runme like: o2-analysis-trackselection -b --aod-file ${sourceFile} --aod-writer-json ${writerFile} | o2-analysis-timestamp -b | o2-analysis-trackextension -b | o2-analysis-lf-lambdakzerobuilder -b | o2-analysis-pid-tpc -b | o2-analysis-em-skimmermc -b
1818

1919
// todo: remove reduantant information in GammaConversionsInfoTrue
20-
#include "gammaTables.h"
20+
#include "PWGEM/PhotonMeson/DataModel/gammaTables.h"
2121

2222
#include "Framework/runDataProcessing.h"
2323
#include "Framework/AnalysisTask.h"

PWGEM/Tasks/skimmerGammaConversionsTruthOnlyMc.cxx renamed to PWGEM/PhotonMeson/TableProducer/skimmerGammaConversionsTruthOnlyMc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// runme like: o2-analysis-trackselection -b --aod-file ${sourceFile} --aod-writer-json ${writerFile} | o2-analysis-timestamp -b | o2-analysis-trackextension -b | o2-analysis-lf-lambdakzerobuilder -b | o2-analysis-pid-tpc -b | o2-analysis-em-skimmermc -b
1818

1919
// todo: remove reduantant information in GammaConversionsInfoTrue
20-
#include "gammaTables.h"
20+
#include "PWGEM/PhotonMeson/DataModel/gammaTables.h"
2121

2222
#include "TVector3.h"
2323

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
o2physics_add_dpl_workflow(gammaconversions
13+
SOURCES gammaConversions.cxx
14+
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
15+
COMPONENT_NAME Analysis)
16+
17+
o2physics_add_dpl_workflow(gammaconversionstruthonlymc
18+
SOURCES gammaConversionsTruthOnlyMc.cxx
19+
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
20+
COMPONENT_NAME Analysis)

PWGEM/Tasks/gammaConversions.cxx renamed to PWGEM/PhotonMeson/Tasks/gammaConversions.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/// dependencies: o2-analysis-lf-lambdakzerobuilder
1414
/// \author stephan.friedrich.stiefelmaier@cern.ch
1515

16-
#include "gammaTables.h"
16+
#include "PWGEM/PhotonMeson/DataModel/gammaTables.h"
1717

1818
#include "Framework/AnalysisTask.h"
1919
#include "Framework/AnalysisDataModel.h"

PWGEM/Tasks/gammaConversionsTruthOnlyMc.cxx renamed to PWGEM/PhotonMeson/Tasks/gammaConversionsTruthOnlyMc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/// dependencies: none
1515
/// \author stephan.friedrich.stiefelmaier@cern.ch
1616

17-
#include "gammaTables.h"
17+
#include "PWGEM/PhotonMeson/DataModel/gammaTables.h"
1818

1919
#include "TVector3.h"
2020

PWGEM/Tasks/CMakeLists.txt

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

12-
o2physics_add_dpl_workflow(gammaconversions
13-
SOURCES gammaConversions.cxx
14-
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
15-
COMPONENT_NAME Analysis)
16-
17-
o2physics_add_dpl_workflow(gammaconversionstruthonlymc
18-
SOURCES gammaConversionsTruthOnlyMc.cxx
19-
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
20-
COMPONENT_NAME Analysis)
21-
2212
o2physics_add_dpl_workflow(phoscellqa
2313
SOURCES phosCellQA.cxx
2414
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing O2::PHOSBase
@@ -28,13 +18,3 @@ o2physics_add_dpl_workflow(phoscluqa
2818
SOURCES phosCluQA.cxx
2919
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing O2::PHOSBase
3020
COMPONENT_NAME Analysis)
31-
32-
o2physics_add_dpl_workflow(skimmergammaconversions
33-
SOURCES skimmerGammaConversions.cxx
34-
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
35-
COMPONENT_NAME Analysis)
36-
37-
o2physics_add_dpl_workflow(skimmergammaconversionstruthonlymc
38-
SOURCES skimmerGammaConversionsTruthOnlyMc.cxx
39-
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase O2Physics::AnalysisCore O2::DetectorsVertexing
40-
COMPONENT_NAME Analysis)

0 commit comments

Comments
 (0)