Skip to content

Commit 32b9733

Browse files
committed
Added comments for testing
1 parent 019777d commit 32b9733

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

PWGCF/TwoParticleCorrelations/TableProducer/identifiedBfFilter.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,6 +1051,7 @@ struct IdentifiedBfFilterTracks {
10511051
float charge = 0;
10521052
if (pdgpart != nullptr){
10531053
charge = getCharge(pdgpart->Charge());
1054+
//print charge
10541055
}
10551056

10561057
if (charge != 0) {
@@ -1167,7 +1168,7 @@ inline MatchRecoGenSpecies IdentifiedBfFilterTracks::IdentifyParticle(ParticleOb
11671168
{
11681169
using namespace identifiedbffilter;
11691170

1170-
int pdgcode = abs(particle.pdgCode());
1171+
int pdgcode = fabs(particle.pdgCode());
11711172

11721173
switch (pdgcode) {
11731174
case pdgcodeEl:
@@ -1503,6 +1504,7 @@ int8_t IdentifiedBfFilterTracks::selectTrackAmbiguousCheck(CollisionObjects cons
15031504
/* feedback of no ambiguous tracks only if checks required */
15041505
fhAmbiguousTrackType->Fill(tracktype, multiplicityclass);
15051506
}
1507+
std::cout<<"Hello Accept Track"<<std::endl;
15061508
return AcceptTrack(track);
15071509
}
15081510
}

0 commit comments

Comments
 (0)