Skip to content

Commit

Permalink
update trigger repo, path, cmakelists
Browse files Browse the repository at this point in the history
include latest trigger developments

split hls by subdetector

bump trigger
  • Loading branch information
therwig authored and tomeichlersmith committed Sep 19, 2023
1 parent 4355d4c commit 744619a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
url = https://github.com/jothepro/doxygen-awesome-css
[submodule "Trigger"]
path = Trigger
url = git@github.com:LDMX-Software/Trigger.git
url = https://github.com/LDMX-Software/Trigger.git
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ if(BUILD_ALL OR BUILD_RECON_ONLY)
# This module is focused on track reconstruction
add_subdirectory(Tracking)

# This module contains trigger algorithms.
add_subdirectory(Trigger/Algo)

endif()

if(BUILD_ALL OR BUILD_SIM_ONLY)
Expand Down
2 changes: 1 addition & 1 deletion Trigger
Submodule Trigger updated 74 files
+3 −0 .gitmodules
+41 −0 Algo/CMakeLists.txt
+51 −0 Algo/include/Trigger/DiscreteInputs.h
+54 −0 Algo/include/Trigger/DiscreteInputs_IO.h
+72 −0 Algo/include/Trigger/DumpFileWriter.h
+80 −0 Algo/include/Trigger/EcalTPSelector.h
+85 −0 Algo/include/Trigger/Event/TrigCaloCluster.h
+51 −0 Algo/include/Trigger/Event/TrigCaloHit.h
+131 −0 Algo/include/Trigger/Event/TrigEnergySum.h
+222 −0 Algo/include/Trigger/IdealClusterBuilder.h
+22 −0 Algo/include/Trigger/Tester.h
+69 −0 Algo/include/Trigger/TrigEcalClusterProducer.h
+70 −0 Algo/include/Trigger/TrigEcalEnergySum.h
+54 −0 Algo/include/Trigger/TrigHcalEnergySum.h
+9 −0 Algo/python/dump_file_writer.py
+9 −0 Algo/python/trigger_cfi.py
+9 −0 Algo/python/trigger_ecal_sum.py
+41 −0 Algo/python/trigger_energy_sums.py
+76 −0 Algo/src/Trigger/DumpFileWriter.cxx
+179 −0 Algo/src/Trigger/EcalTPSelector.cxx
+32 −0 Algo/src/Trigger/Event/TrigCaloCluster.cxx
+13 −0 Algo/src/Trigger/Event/TrigCaloHit.cxx
+33 −0 Algo/src/Trigger/Event/TrigEnergySum.cxx
+496 −0 Algo/src/Trigger/IdealClusterBuilder.cxx
+16 −0 Algo/src/Trigger/Tester.cxx
+129 −0 Algo/src/Trigger/TrigEcalClusterProducer.cxx
+89 −0 Algo/src/Trigger/TrigEcalEnergySum.cxx
+139 −0 Algo/src/Trigger/TrigHcalEnergySum.cxx
+ Algo_HLS/Ecal/data/test.dump
+1 −0 Algo_HLS/Ecal/make_TotalEnergy.tcl
+11 −0 Algo_HLS/Ecal/ref/TotalEnergy_ref.cpp
+13 −0 Algo_HLS/Ecal/src/TotalEnergy.cpp
+18 −0 Algo_HLS/Ecal/src/TotalEnergy.h
+32 −0 Algo_HLS/Ecal/src/data.h
+26 −0 Algo_HLS/Ecal/tb/TotalEnergy_test.cpp
+1 −0 Algo_HLS/Hcal/Readme.md
+11 −0 Algo_HLS/TS/Makefile
+8 −0 Algo_HLS/TS/README.md
+102 −0 Algo_HLS/TS/data/in_data.txt
+101 −0 Algo_HLS/TS/data/out_data.txt
+0 −0 Algo_HLS/TS/directives.tcl
+ Algo_HLS/TS/ip/TSTriggerAlgo.dcp
+20 −0 Algo_HLS/TS/reports/impl/TSTriggerAlgo_export.rpt
+28 −0 Algo_HLS/TS/reports/impl/TSTriggerAlgo_export.xml
+1,467 −0 Algo_HLS/TS/reports/syn/TSTriggerAlgo_csynth.rpt
+3,724 −0 Algo_HLS/TS/reports/syn/TSTriggerAlgo_csynth.xml
+3,724 −0 Algo_HLS/TS/reports/syn/csynth.xml
+190 −0 Algo_HLS/TS/reports/syn/getDecodedAdc_csynth.rpt
+189 −0 Algo_HLS/TS/reports/syn/getDecodedAdc_csynth.xml
+132 −0 Algo_HLS/TS/reports/syn/getEncodedAdc_csynth.rpt
+189 −0 Algo_HLS/TS/reports/syn/getEncodedAdc_csynth.xml
+133 −0 Algo_HLS/TS/reports/syn/isTdcValid_csynth.rpt
+189 −0 Algo_HLS/TS/reports/syn/isTdcValid_csynth.xml
+3 −0 Algo_HLS/TS/solution.tcl
+1 −0 Algo_HLS/TS/solution1.directive
+8 −0 Algo_HLS/TS/sources.tcl
+57 −0 Algo_HLS/TS/src/TSDigi.cpp
+42 −0 Algo_HLS/TS/src/TSDigi.hpp
+20 −0 Algo_HLS/TS/src/TSTrack.cpp
+33 −0 Algo_HLS/TS/src/TSTrack.hpp
+46 −0 Algo_HLS/TS/src/TSTriggerAlgo.cpp
+10 −0 Algo_HLS/TS/src/TSTriggerAlgo.hpp
+12 −0 Algo_HLS/TS/src/TSTriggerParameters.hpp
+78 −0 Algo_HLS/TS/tb/TSDigiCollection.cpp
+32 −0 Algo_HLS/TS/tb/TSDigiCollection.hpp
+83 −0 Algo_HLS/TS/tb/TSTrackCollection.cpp
+34 −0 Algo_HLS/TS/tb/TSTrackCollection.hpp
+120 −0 Algo_HLS/TS/tb/tests.cpp
+0 −10 Algo_HLS/ref/TotalEnergy_ref.cpp
+0 −13 Algo_HLS/src/TotalEnergy.cpp
+0 −16 Algo_HLS/src/TotalEnergy.h
+0 −33 Algo_HLS/src/data.h
+0 −19 Algo_HLS/tb/TotalEnergy_test.cpp
+1 −0 submodules/ruckus

0 comments on commit 744619a

Please sign in to comment.