ATLAS Offline Software
WriteAthenaRoot.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 
3 # @file AthenaRootComps/python/WriteAthenaRoot.py
4 # @purpose make the Athena framework write a set of ROOT files
5 # @author Sebastien Binet <binet@cern.ch>
6 #
7 
8 
9 from AthenaRootComps.OutputStreamAthenaRoot import createNtupleOutputStream
10 
11 
12 __all__ = [ 'createNtupleOutputStream' ]
13 
15  """ Helper method to configure Athena to write out ROOT files """
16 
17  from AthenaCommon.Logging import logging
18  msg = logging.getLogger( 'configureWriteAthenaRoot' )
19  msg.debug( "Configuring Athena for writing ROOT files..." )
20 
21  # Load the basic services
22  import AthenaRootComps.AthenaRootBase # noqa: F401
23 
24  msg.debug( "Configuring Athena for writing ROOT files... [DONE]" )
25  return
26 
27 
29 
30 
31 del _configureWriteAthenaRoot
WriteAthenaRoot._configureWriteAthenaRoot
def _configureWriteAthenaRoot()
Definition: WriteAthenaRoot.py:14