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
* update EBMRD per #334
* update EBLAPPD per #336
* update EBSaver per #337 (except no-op functions)
* update ANNIEEventTreeMaker per #339
* update LAPPDTreeMaker per #340
* update EBLoadRaw per #338
deferring proposed improvements to regex matching and path configs.
* remove RingCounting models, load from pnfs path
Removing the RingCounting v1.0.0 model here, but not pruning it from the
git repo to avoid rewriting history.
The config is updated to point to the model directory that already
exists on pnfs rather than a user directory.
* increment class version for Channel and LAPPDPulse
* remove no-op tool LAPPDBSCharging
* fix memory leak in LAPPDTimeAlignment
Note: it may be more efficient to allocate this once rather than within
the loop, but this is a minimal fix.
* remove LAPPD offset script, updated in #356
* Update Channel.h
only archive channelType if it exists in this version
* Update LAPPDPulse.h
Only archive pulseFollowTime and pulseFollowCharge if they exist in this version of the class
---------
Log("EBLAPPD: Matching LAPPD data with target trigger " + std::to_string(targetTrigger) + " in track " + std::to_string(matchToTrack), v_message, verbosityEBLAPPD);
281
281
282
282
std::map<int, std::vector<std::map<uint64_t, uint32_t>>> GroupedTriggersInTotal; // each map is a group of triggers, with the key is the target trigger word
@@ -308,7 +308,7 @@ bool EBLAPPD::Matching(int targetTrigger, int matchToTrack)
308
308
int matchedTrack = 0;
309
309
int matchedIndex = 0;
310
310
311
-
for (std::pair<int, std::vector<std::map<uint64_t, uint32_t>>> pair : GroupedTriggersInTotal)
311
+
for (conststd::pair<int, std::vector<std::map<uint64_t, uint32_t>>>& pair : GroupedTriggersInTotal)
312
312
{
313
313
int TrackTriggerWord = pair.first;
314
314
if (matchedNumberInTrack.find(TrackTriggerWord) == matchedNumberInTrack.end())
@@ -318,13 +318,13 @@ bool EBLAPPD::Matching(int targetTrigger, int matchToTrack)
std::map<int, std::vector<std::map<uint64_t, uint32_t>>> GroupedTriggersInTotal; // each map is a group of triggers, with the key is the target trigger word
0 commit comments