Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
099bc58
adding the first version of a wrapper for ALICE HLT analysis components
matthiasrichter May 7, 2014
9400e82
adding command line parsing and workflow up to the creation of the co…
matthiasrichter May 7, 2014
ca199e2
adding support of HOMER library from the ALICE HLT project (HLT Onlin…
matthiasrichter May 8, 2014
d451566
added first implementation of the WrapperDevice
matthiasrichter May 8, 2014
d3cd7da
added the event type data block to the component input, implemented t…
matthiasrichter May 9, 2014
487bd1f
adding mockup for using the FairMQDevice state machine
matthiasrichter May 9, 2014
f666506
bugfix: one function definition and actual implementation of the ALIC…
matthiasrichter May 9, 2014
463d86a
applying the bugfix in AliHLTDataTypes.h to the system interface
matthiasrichter May 9, 2014
da474d2
moving all HLT component related code to a dedicated class in order t…
matthiasrichter May 9, 2014
4d56e68
adding the memory allocation functionality (forgotten to commit so far)
matthiasrichter May 10, 2014
5e651c9
adding Component class and test program to build; adding the correct …
matthiasrichter May 10, 2014
9cd6142
adding gitignore for the devices/aliceHLTwrapper folder
matthiasrichter May 10, 2014
d317d2b
using the ZMQ_INCLUDE_DIR for includes of zmq.h
matthiasrichter May 13, 2014
7f24c4c
implementing file input and output in the standalone test component; …
matthiasrichter May 13, 2014
47cc183
some bugfixes concerning reading of blocks in HOMER format; using con…
matthiasrichter May 14, 2014
c7e01df
added warning for dropped output blocks
matthiasrichter May 14, 2014
91b8f4e
WrapperDevice finished, now based on the ALICE::HLT::Component class;…
matthiasrichter May 14, 2014
63d2f58
bugfix for handling input messages: initial size of array caused inva…
matthiasrichter May 14, 2014
fb45ad7
more flexible argument scan, configurable number of both input and ou…
matthiasrichter May 15, 2014
3b9a514
bugfix: missing input/output parameters handled and usage printout ex…
matthiasrichter May 20, 2014
fe54e8c
correcting compilation error on some compilers; throwing runtime_erro…
matthiasrichter May 22, 2014
a29cf67
inluding the boost include and library directory; not yet clear why t…
matthiasrichter May 22, 2014
05ceed7
adding tool macros/scripts
matthiasrichter May 23, 2014
8642b26
adding README; changing file attributes of createLaunchCommands.sh
matthiasrichter May 23, 2014
04dedc3
typo corrected, first capital letter of a class declaration was missing
matthiasrichter Jul 22, 2014
2cde463
chenges needed to run on MAC OS
MohammadAlTurany Aug 14, 2014
991add1
blind attempt to fix false termination issue
rbx Aug 26, 2014
6239c30
bugfix: providing an event ID to the component, simple counter at the…
matthiasrichter Sep 22, 2014
bb4f977
implemented synchronized input, statistics and options for polling an…
matthiasrichter Sep 23, 2014
85945db
adding options factory-type, verbosity, loginterval, poll-period, n
matthiasrichter Sep 23, 2014
2177268
correctly implemented the --dry-run option with no argument; building…
matthiasrichter Sep 23, 2014
322ef43
added signal handling for proper termination
matthiasrichter Sep 25, 2014
66f8d15
setting high-water-mark for send and receive buffers of the socket to…
matthiasrichter Oct 1, 2014
717c11d
correctly handling the output buffer estimator of the HLT component t…
matthiasrichter Oct 7, 2014
0d047ab
merging branch rebuild_alicehlt_history which rebuilds the commit his…
matthiasrichter Nov 25, 2014
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
2 changes: 1 addition & 1 deletion devices/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_subdirectory (flp2epn)
add_subdirectory (flp2epn-dynamic)
add_subdirectory (flp2epn-distributed)
add_subdirectory (alicehlt)
add_subdirectory (aliceHLTwrapper)
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set(INCLUDE_DIRECTORIES
${BASE_INCLUDE_DIRECTORIES}
${ZMQ_INCLUDE_DIR}
${Boost_INCLUDE_DIR}
${CMAKE_SOURCE_DIR}/devices/alicehlt
${CMAKE_SOURCE_DIR}/devices/aliceHLTwrapper
)

include_directories(${INCLUDE_DIRECTORIES})
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ d) set up development clone
git remote add --no-tags matthias gitolite@git.uio.no:u/mrichter/FairRoot
git remote update matthias
git branch --track alicehlt remotes/matthias/alicehlt
git checkout alicehlt # code can be found in example/alicehlt
git checkout alicehlt # code can be found in devices/aliceHLTwrapper
make install # in the build directory


Expand Down