The Gaudi Framework  master (82fdf313)
Loading...
Searching...
No Matches
HistogramWriterAlg.cpp
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 2024 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "COPYING". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#include <Gaudi/Algorithm.h>
13#include <TH1F.h>
14
17 public:
18 HistogramWriterAlg( const std::string& n, ISvcLocator* l ) : Algorithm( n, l ) {}
19
21 return Gaudi::Algorithm::initialize().andThen( [this]() {
23 if ( !m_fileSvc ) {
24 error() << "Failed to retrieve FileSvc" << endmsg;
26 }
27
28 m_file = m_fileSvc->getFile( "Histogram" );
29 if ( !m_file ) {
30 error() << "Failed to retrieve TFile" << endmsg;
32 }
33
34 m_hist = std::make_unique<TH1F>( "FileSvcRandomHist", "Random Numbers", 100, 0, 100 );
35
37 } );
38 }
39
40 StatusCode execute( const EventContext& ) const override {
41 m_hist->Fill( rand() % 100 );
43 }
44
45 StatusCode finalize() override {
46 m_hist->Write();
48 }
49
50 private:
52 std::shared_ptr<TFile> m_file;
53 std::unique_ptr<TH1F> m_hist;
54 };
55
57} // namespace Gaudi::TestSuite::FileSvc
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition MsgStream.h:198
#define DECLARE_COMPONENT(type)
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
This class represents an entry point to all the event specific data.
Base class from which all concrete algorithm classes should be derived.
Definition Algorithm.h:87
Algorithm(std::string name, ISvcLocator *svcloc, std::string version=PACKAGE_VERSION)
Constructor.
Definition Algorithm.h:98
StatusCode initialize() override
the default (empty) implementation of IStateful::initialize() method
Definition Algorithm.h:175
StatusCode finalize() override
the default (empty) implementation of IStateful::finalize() method
Definition Algorithm.h:181
SmartIF< IService > service(std::string_view name, const bool createIf=true, const bool quiet=false) const
Return a pointer to the service identified by name (or "type/name")
StatusCode execute(const EventContext &) const override
HistogramWriterAlg(const std::string &n, ISvcLocator *l)
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition ISvcLocator.h:42
This class is used for returning status codes from appropriate routines.
Definition StatusCode.h:64
StatusCode andThen(F &&f, ARGS &&... args) const
Chain code blocks making the execution conditional a success result.
Definition StatusCode.h:163
constexpr static const auto SUCCESS
Definition StatusCode.h:99
constexpr static const auto FAILURE
Definition StatusCode.h:100
Interface for a component that manages file access within Gaudi applications.
Definition IFileSvc.h:27