Skip to content

Commit

Permalink
Merge pull request #39 from DUNE-DAQ/johnfreeman/daq-release_issue376…
Browse files Browse the repository at this point in the history
…_renames_for_v5

JCF: update names as described in DUNE-DAQ/daq-release#376 and detail…
  • Loading branch information
jcfreeman2 authored Jun 14, 2024
2 parents b7d7692 + a113a73 commit 28111da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/process_tpstream.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ int main(int argc, char const *argv[])
app.add_option("-o", output_file_path, "Output TPStream file path")->required();
std::string channel_map_name = "VDColdboxChannelMap";
app.add_option("-m", channel_map_name, "Detector Channel Map");
std::string plugin_name = "TriggerActivityMakerHorizontalMuonPlugin";
std::string plugin_name = "TAMakerHorizontalMuonAlgorithm";
app.add_option("-p", plugin_name, "Trigger Activity plugin name.");
std::string config_name;
app.add_option("-j", config_name, "Trigger Activity config JSON to use.");
Expand Down
4 changes: 2 additions & 2 deletions apps/tapipe.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include "hdf5libs/HDF5RawDataFile.hpp"
#include "trgdataformats/TriggerPrimitive.hpp"
#include "triggeralgs/HorizontalMuon/TriggerActivityMakerHorizontalMuon.hpp"
#include "triggeralgs/HorizontalMuon/TAMakerHorizontalMuonAlgorithm.hpp"
#include "triggeralgs/TriggerObjectOverlay.hpp"

using namespace dunedaq;
Expand Down Expand Up @@ -219,7 +219,7 @@ main(int argc, char* argv[])

// Finally create a TA maker
// Waiting for A.Oranday's factory!
triggeralgs::TriggerActivityMakerHorizontalMuon hmta;
triggeralgs::TAMakerHorizontalMuonAlgorithm hmta;

// Create output buffer
std::vector<triggeralgs::TriggerActivity> ta_buffer;
Expand Down
2 changes: 1 addition & 1 deletion docs/process-tpstream.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ trgtools_process_tpstream -i input_file.hdf5 -o output_file.hdf5 -j ta_config.js
trgtools_process_tpstream -i input_file.hdf5 -o output_file.hdf5
```
In the second case, the defaults will be
* `-p`: `TriggerActivityMakerHorizontalMuonPlugin`
* `-p`: `TAMakerHorizontalMuonAlgorithm`
* `-m`: `VDColdboxChannelMap`
* `-j`: `{
"trigger_on_adc": false,
Expand Down

0 comments on commit 28111da

Please sign in to comment.