Skip to content

Commit 888806a

Browse files
committed
add_changes_after_full_alice_reinstall
1 parent 99313de commit 888806a

3 files changed

Lines changed: 1298 additions & 515 deletions

File tree

PWGJE/DataModel/PhotonChargedTriggerCorrelation.h

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@ DECLARE_SOA_COLUMN(Eta, eta, float);
4343
namespace collision_extra_corr
4444
{
4545
DECLARE_SOA_COLUMN(SelEv, selEv, bool);
46+
DECLARE_SOA_COLUMN(ThirdDecimalTruePosZ, thirdDecimalTruePosZ, int);
4647
DECLARE_SOA_COLUMN(TrigEv, trigEv, bool);
48+
DECLARE_SOA_COLUMN(PtMax, ptMax, float);
4749
DECLARE_SOA_COLUMN(NGlobalTracks, nGlobalTracks, int);
4850
} // namespace collision_extra_corr
4951
DECLARE_SOA_TABLE(CollisionsExtraCorr, "AOD", "COLLISIONSEXTRACORR",
50-
collision_extra_corr::SelEv, collision_extra_corr::TrigEv, collision_extra_corr::NGlobalTracks);
52+
collision_extra_corr::SelEv, collision_extra_corr::ThirdDecimalTruePosZ, collision_extra_corr::TrigEv, collision_extra_corr::PtMax, collision_extra_corr::NGlobalTracks);
5153

5254
// trigger
5355
namespace trigger
@@ -83,12 +85,12 @@ using Pipm = Pipms::iterator;
8385
namespace photon_pcm
8486
{
8587
DECLARE_SOA_INDEX_COLUMN_FULL(V0PhotonKF, v0PhotonKF, int, V0PhotonsKF, "");
86-
DECLARE_SOA_COLUMN(PosTrackId, posTrackId, int);
87-
DECLARE_SOA_COLUMN(NegTrackId, negTrackId, int);
88+
DECLARE_SOA_INDEX_COLUMN_FULL(PosJetTrack, posJetTrack, int, JetTracks, "_pos");
89+
DECLARE_SOA_INDEX_COLUMN_FULL(NegJetTrack, negJetTrack, int, JetTracks, "_neg");
8890
} // namespace photon_pcm
8991
DECLARE_SOA_TABLE(PhotonPCMs, "AOD", "PHOTONPCMS",
9092
o2::soa::Index<>, corr_particle::JetCollisionId, photon_pcm::V0PhotonKFId,
91-
photon_pcm::PosTrackId, photon_pcm::NegTrackId,
93+
photon_pcm::PosJetTrackId, photon_pcm::NegJetTrackId,
9294
corr_particle::Pt, corr_particle::Phi, corr_particle::Eta);
9395
using PhotonPCM = PhotonPCMs::iterator;
9496

@@ -97,15 +99,15 @@ namespace photon_pcm_pair
9799
{
98100
DECLARE_SOA_INDEX_COLUMN_FULL(V0PhotonKF1, v0PhotonKF1, int, V0PhotonsKF, "_1");
99101
DECLARE_SOA_INDEX_COLUMN_FULL(V0PhotonKF2, v0PhotonKF2, int, V0PhotonsKF, "_2");
100-
DECLARE_SOA_COLUMN(PosTrack1Id, posTrack1Id, int);
101-
DECLARE_SOA_COLUMN(NegTrack1Id, negTrack1Id, int);
102-
DECLARE_SOA_COLUMN(PosTrack2Id, posTrack2Id, int);
103-
DECLARE_SOA_COLUMN(NegTrack2Id, negTrack2Id, int);
102+
DECLARE_SOA_INDEX_COLUMN_FULL(PosJetTrack1, posJetTrack1, int, JetTracks, "_pos1");
103+
DECLARE_SOA_INDEX_COLUMN_FULL(NegJetTrack1, negJetTrack1, int, JetTracks, "_neg1");
104+
DECLARE_SOA_INDEX_COLUMN_FULL(PosJetTrack2, posJetTrack2, int, JetTracks, "_pos2");
105+
DECLARE_SOA_INDEX_COLUMN_FULL(NegJetTrack2, negJetTrack2, int, JetTracks, "_neg2");
104106
DECLARE_SOA_COLUMN(Mgg, mgg, float);
105107
} // namespace photon_pcm_pair
106108
DECLARE_SOA_TABLE(PhotonPCMPairs, "AOD", "PHOTONPCMPAIRS",
107109
o2::soa::Index<>, corr_particle::JetCollisionId, photon_pcm_pair::V0PhotonKF1Id, photon_pcm_pair::V0PhotonKF2Id,
108-
photon_pcm_pair::PosTrack1Id, photon_pcm_pair::NegTrack1Id, photon_pcm_pair::PosTrack2Id, photon_pcm_pair::NegTrack2Id,
110+
photon_pcm_pair::PosJetTrack1Id, photon_pcm_pair::NegJetTrack1Id, photon_pcm_pair::PosJetTrack2Id, photon_pcm_pair::NegJetTrack2Id,
109111
corr_particle::Pt, corr_particle::Phi, corr_particle::Eta, photon_pcm_pair::Mgg);
110112
using PhotonPCMPair = PhotonPCMPairs::iterator;
111113

@@ -114,11 +116,13 @@ using PhotonPCMPair = PhotonPCMPairs::iterator;
114116
// mcCollision extension
115117
namespace mc_collision_extra_corr
116118
{
119+
DECLARE_SOA_COLUMN(ThirdDecimalTruePosZ, thirdDecimalTruePosZ, int);
117120
DECLARE_SOA_COLUMN(TrigEv, trigEv, bool);
121+
DECLARE_SOA_COLUMN(PtMax, ptMax, float);
118122
DECLARE_SOA_COLUMN(NChargedInEtaRange, nChargedInEtaRange, int);
119123
} // namespace mc_collision_extra_corr
120124
DECLARE_SOA_TABLE(McCollisionsExtraCorr, "AOD", "MCCOLLISIONSEXTRACORR",
121-
mc_collision_extra_corr::TrigEv, mc_collision_extra_corr::NChargedInEtaRange);
125+
mc_collision_extra_corr::ThirdDecimalTruePosZ, mc_collision_extra_corr::TrigEv, mc_collision_extra_corr::PtMax, mc_collision_extra_corr::NChargedInEtaRange);
122126

123127
// trigger
124128
namespace trigger_particle

0 commit comments

Comments
 (0)