Skip to content

Commit

Permalink
add EventCounter algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
m-fila authored and jmcarcell committed Oct 30, 2024
1 parent 250eed0 commit 4bfe939
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 0 deletions.
39 changes: 39 additions & 0 deletions k4FWCore/components/EventCounter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright (c) 2014-2024 Key4hep-Project.
*
* This file is part of Key4hep.
* See https://key4hep.github.io/key4hep-doc/ for further info.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include "Gaudi/Accumulators.h"
#include "Gaudi/Functional/Consumer.h"

class EventCounter final : public Gaudi::Functional::Consumer<void(const EventContext&)> {
public:
using Consumer::Consumer;

void operator()(const EventContext& ctx) const override {
++m_count;
if ((m_frequency > 0) && (ctx.evt() % m_frequency == 0)) {
info() << "Processing event " << ctx.evt() << endmsg;
}
}

private:
mutable Gaudi::Accumulators::Counter<> m_count{this, "count"};
Gaudi::Property<int> m_frequency{this, "Frequency", 1, "How often to print the event number"};
};

DECLARE_COMPONENT(EventCounter)
2 changes: 2 additions & 0 deletions test/k4FWCoreTest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ add_test_with_env(Testk4runCustomArguments options/TestArgs.py --foo=42 PROPERTI
add_test_with_env(Testk4runVerboseOutput options/TestArgs.py --verbose PROPERTIES PASS_REGULAR_EXPRESSION " VERBOSE ")
add_test_with_env(Testk4runHelpOnly options/TestArgs.py --help PROPERTIES PASS_REGULAR_EXPRESSION "show this help message and exit")

add_test_with_env(TestEventCounter options/TestEventCounter.py)
set_tests_properties(TestEventCounter PROPERTIES FAIL_REGULAR_EXPRESSION "Processing event 1;Processing event 3" PASS_REGULAR_EXPRESSION "Processing event 0.*Processing event 2;Processing event 2.*Processing event 0")

add_test_with_env(FunctionalMemory options/ExampleFunctionalMemory.py)
add_test_with_env(FunctionalMTMemory options/ExampleFunctionalMTMemory.py)
Expand Down
58 changes: 58 additions & 0 deletions test/k4FWCoreTest/options/TestEventCounter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
#
# Copyright (c) 2014-2024 Key4hep-Project.
#
# This file is part of Key4hep.
# See https://key4hep.github.io/key4hep-doc/ for further info.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

# This is an example of counting events with EventCounter algorithm.
# During execution the EventCounter algorithms will printout current event number depending on the frequency.
# The summary about total number of events passed through that algorithms is handled by MessageSvcSink

from Gaudi.Configuration import INFO, WARNING
from Configurables import EventCounter
from Configurables import HiveSlimEventLoopMgr, HiveWhiteBoard, AvalancheSchedulerSvc
from k4FWCore import ApplicationMgr

evtslots = 4
threads = 4

whiteboard = HiveWhiteBoard(
"EventDataSvc",
EventSlots=evtslots,
ForceLeaves=True,
)

slimeventloopmgr = HiveSlimEventLoopMgr(
"HiveSlimEventLoopMgr",
SchedulerName="AvalancheSchedulerSvc",
Warnings=False,
OutputLevel=WARNING,
)

scheduler = AvalancheSchedulerSvc(ThreadPoolSize=threads, ShowDataFlow=True, OutputLevel=WARNING)

counter_1 = EventCounter("SilentEventCounter", Frequency=0, OutputLevel=INFO)
counter_2 = EventCounter("EventCounter", Frequency=2, OutputLevel=INFO)


mgr = ApplicationMgr(
TopAlg=[counter_1, counter_2],
EvtSel="NONE",
EvtMax=4,
ExtSvc=[whiteboard, "Gaudi::Monitoring::MessageSvcSink"],
EventLoop=slimeventloopmgr,
OutputLevel=INFO,
)

0 comments on commit 4bfe939

Please sign in to comment.