The Gaudi Framework  master (82fdf313)
Loading...
Searching...
No Matches
NTupleWriterAlg.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 <TTree.h>
14
17 public:
18 NTupleWriterAlg( 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( "Ntuple" );
29 if ( !m_file ) {
30 error() << "Failed to retrieve TFile" << endmsg;
32 }
33
34 m_tree = std::make_unique<TTree>( "FileSvcNTuple", "An example NTuple" ).release();
35 m_tree->Branch( "value", &m_value );
36
38 } );
39 }
40
41 StatusCode execute( const EventContext& ) const override {
42 m_tree->Fill();
44 }
45
46 StatusCode finalize() override {
47 m_tree->Write();
49 }
50
51 private:
53 std::shared_ptr<TFile> m_file;
54 TTree* m_tree{ nullptr };
55 int m_value{ 9 };
56 };
57
58 DECLARE_COMPONENT( NTupleWriterAlg )
59} // 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
NTupleWriterAlg(const std::string &n, ISvcLocator *l)
Gaudi::Interfaces::IFileSvc * m_fileSvc
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