You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
voidfillCorrelations(TTracks tracks1, TCollision currentCollision, float posZ, int bin, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms (use buffer, only for mixevent)
777
+
voidfillCorrelations(constTTracks& tracks1, constTCollision& currentCollision, float posZ, int bin, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms (use buffer, only for mixevent)
voidfillCorrelationsCasc(TTracks tracks1, TCollision currentCollision, float posX, float posY, float posZ, int bin, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms (use buffer, only for mixevent)
825
+
voidfillCorrelationsCasc(constTTracks& tracks1, constTCollision& currentCollision, float posX, float posY, float posZ, int bin, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms (use buffer, only for mixevent)
voidfillCorrelations(TTracks tracks1, TTracksAssoc tracks2, float posZ, int system, int magneticField, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
876
+
voidfillCorrelations(constTTracks& tracks1, constTTracksAssoc& tracks2, float posZ, int system, int magneticField, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
887
877
{
888
878
// Cache efficiency for particles (too many FindBin lookups)
voidfillCorrelationsCasc(TTracks tracks1, TTracksAssoc tracks2, float posX, float posY, float posZ, int system, int magneticField, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
961
+
voidfillCorrelationsCasc(constTTracks& tracks1, constTTracksAssoc& tracks2, float posX, float posY, float posZ, int system, int magneticField, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
972
962
{
973
963
// Cache efficiency for particles (too many FindBin lookups)
974
964
if (mEfficiency) {
@@ -992,8 +982,6 @@ struct CascDiHadronCorr {
992
982
float triggerWeight = 1.0f;
993
983
float associatedWeight = 1.0f;
994
984
// loop over all tracks
995
-
if (tracks1.size() > 0)
996
-
std::cout<<"event begin"<<std::endl;
997
985
for (autoconst& track1 : tracks1) {
998
986
999
987
if (!cascSelected(track1, posX, posY, posZ))
@@ -1020,7 +1008,6 @@ struct CascDiHadronCorr {
1020
1008
}
1021
1009
1022
1010
if (!cfgUsePtOrder && bachelor.globalIndex() == track2.globalIndex()) {
voidfillCorrelationsExcludeSoloTracks(TTracks tracks1, TTracksAssoc tracks2, float posZ, int magneticField, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
1066
+
voidfillCorrelationsExcludeSoloTracks(constTTracks& tracks1, constTTracksAssoc& tracks2, float posZ, int magneticField, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
voidfillMCCorrelations(TTracks tracks1, TTracksAssoc tracks2, float posZ, int system, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
1162
+
voidfillMCCorrelations(constTTracks& tracks1, constTTracksAssoc& tracks2, float posZ, int system, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
voidfillMCCorrelationsCasc(TTracks tracks1, TTracksAssoc tracks2, float posZ, int system, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
1210
+
voidfillMCCorrelationsCasc(constTTracks& tracks1, constTTracksAssoc& tracks2, float posZ, int system, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
0 commit comments