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
// The function that performs the mixing is called outside this class, but the pool provides the events and tracks to be mixed and takes care of updating the events after mixing
138
+
// The function that performs the mixing is called outside this class, but the pool provides the events and tracks to be mixed and takes care of updating the events after mixing
134
139
// (e.g. incrementing the counters and removing the tracks that reached the pool depth for a given cut)
135
-
voidUpdatePool(const MixingEvent& event, short poolDepth) {
140
+
voidUpdatePool(const MixingEvent& event, short poolDepth)
@@ -178,10 +185,10 @@ class MixingHandler : public TNamed
178
185
179
186
// bin limits for the variables used for mixing, the number of vectors corresponds to the number of variables and the content of each vector corresponds to the bin limits for that variable
180
187
std::vector<std::vector<float>> fVariableLimits;
181
-
std::map<int, int> fVariables; // key: variable, value: position in the internal variable list of the handler (used to map the variables to the values passed to FindEventCategory)
188
+
std::map<int, int> fVariables; // key: variable, value: position in the internal variable list of the handler (used to map the variables to the values passed to FindEventCategory)
182
189
183
-
shortfPoolDepth; // number of events to be kept in each pool
184
-
std::map<int, MixingPool> fPools; // key: category, value: pool of events corresponding to that category
190
+
shortfPoolDepth; // number of events to be kept in each pool
191
+
std::map<int, MixingPool> fPools; // key: category, value: pool of events corresponding to that category
0 commit comments