Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e6ffd2d
Starting point for XARAPUCA decoder
aliciavr Oct 11, 2024
d652dc0
Add product (OpDetWaveform) initialization and instance name to the f…
aliciavr Oct 11, 2024
94cc62e
Add art::Handle for artdaq::Fragment checking if there are valid CAEN…
aliciavr Oct 14, 2024
35eceec
Access to CAEN V1740 fragments from the handler checking the type of …
aliciavr Oct 15, 2024
9eeaedd
Add the add_fragment functionto allow checking the validity of the ID…
aliciavr Oct 15, 2024
35223d0
Add access to artdaq headers and decode the waveforms from the binary
aliciavr Oct 16, 2024
2c669b3
Push waveform products after finish decoding
aliciavr Oct 16, 2024
3f2d5d0
Add TTT to the waveforms in us
aliciavr Oct 17, 2024
9c8d59c
Add histogram output for the waveforms
aliciavr Oct 17, 2024
05417a4
Add expected fragment IDs and check their validity. Enable reading da…
aliciavr Oct 31, 2024
27225d2
Get a unique ID for every waveform stored related to the board slot a…
aliciavr Oct 31, 2024
bf0c4b7
Add comments and documentation, clean the code. V1.0 of the X-ARAPUCA…
aliciavr Nov 4, 2024
4f8c9c0
Add SBN Document related to the current implementation of the decoder.
aliciavr Nov 4, 2024
630a88c
Add link in the documentation to the Python binary decoder tool for V…
aliciavr Nov 4, 2024
c72d80c
Updates the include path for the CAENV1740Fragment.hh and one of the …
aliciavr Nov 27, 2024
d6cb318
CAEN offset and verbose option updated.
aliciavr Dec 5, 2024
21d749d
Add option for the number of debug waveforms to store. Comments in th…
aliciavr Jan 8, 2025
a55eca3
Add correction to TFileService ROOT object changing from TH1D to TH1I…
aliciavr Jan 8, 2025
e19ea30
Read and process every fragment straight out in the reading of the ar…
aliciavr Jan 11, 2025
e19e918
Merge branch 'develop' into feature/aliciavr_XARAPUCA_offline_decoder
aliciavr Jan 15, 2025
cb44cbd
Merge branch 'develop' into feature/aliciavr_XARAPUCA_offline_decoder
RachelCoackley Jan 17, 2025
b76af04
Merge branch 'develop' into feature/aliciavr_XARAPUCA_offline_decoder
bear-is-asleep Jan 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sbndcode/Decoders/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ add_subdirectory(PTB)
add_subdirectory(SPECTDC)
add_subdirectory(PMT)
add_subdirectory(CRT)
install_fhicl()
add_subdirectory(XARAPUCA)

install_fhicl()
17 changes: 17 additions & 0 deletions sbndcode/Decoders/XARAPUCA/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
art_make(
MODULE_LIBRARIES
sbndaq_artdaq_core::sbndaq-artdaq-core_Overlays_SBND
sbnobj::SBND_Timing

lardataobj::RecoBase

art_root_io::TFileService_service
art_root_io::tfile_support
artdaq_core::artdaq-core_Data

ROOT::Core
ROOT::Tree

)

install_fhicl()
Loading