Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
Go to the documentation of this file.
17 #include "GaudiKernel/ServiceHandle.h"
29 char typecode_from_typeid(
const std::type_info& ti) {
30 if (ti ==
typeid(
char*)) {
32 }
else if (ti ==
typeid(Char_t)) {
34 }
else if (ti ==
typeid(UChar_t)) {
36 }
else if (ti ==
typeid(Short_t)) {
38 }
else if (ti ==
typeid(UShort_t)) {
40 }
else if (ti ==
typeid(Int_t)) {
42 }
else if (ti ==
typeid(UInt_t)) {
44 }
else if (ti ==
typeid(Float_t)) {
46 }
else if (ti ==
typeid(Double_t)) {
48 }
else if (ti ==
typeid(Long64_t)) {
50 }
else if (ti ==
typeid(ULong64_t)) {
52 }
else if (ti ==
typeid(Bool_t)) {
68 m_branchTypeCode(
'\0') {
80 return StatusCode::FAILURE;
82 return StatusCode::SUCCESS;
87 m_file = TFile::Open(
m_pfn.c_str(),
mode.c_str(),
"AthenaRoot event data file");
91 return StatusCode::FAILURE;
93 return StatusCode::SUCCESS;
99 return StatusCode::FAILURE;
107 return StatusCode::SUCCESS;
111 if (!this->
commit().isSuccess()) {
112 return StatusCode::FAILURE;
119 return StatusCode::SUCCESS;
127 return StatusCode::FAILURE;
133 return StatusCode::FAILURE;
142 return StatusCode::FAILURE;
145 return StatusCode::SUCCESS;
150 return StatusCode::FAILURE;
152 std::string
treeName(container), branchName;
154 if (*itr ==
'/') *itr =
'_';
156 std::string::size_type inx1 = container.find(
'(');
157 if (inx1 != std::string::npos) {
158 std::string::size_type inx2 = container.find(
')');
159 if (inx2 == std::string::npos || inx2 != container.size() - 1) {
160 return StatusCode::FAILURE;
162 branchName =
treeName.substr(inx1 + 1, inx2 - inx1 - 1);
171 m_tree =
new TTree(
treeName.c_str(),
"Main event data tree", splitlevel);
176 return StatusCode::FAILURE;
203 return StatusCode::FAILURE;
205 return StatusCode::SUCCESS;
JetConstituentVector::iterator iterator
StatusCode disconnect()
Release data stream and release implementation dependent resources.
char data[hepevt_bytes_allocation_ATLAS]
StatusCode connectRead()
Open data stream in read mode.
static TScopeAdapter ByNameNoQuiet(const std::string &name, Bool_t load=kTRUE)
std::string m_pfn
Physical file name of the connection.
StatusCode commit()
Commit data stream to ROOT.
virtual ~RootConnection()
Standard destructor.
bool isConnected() const
Check if connected to data source.
const std::type_info & TypeInfo() const
std::unique_ptr< TFile > m_file
description: this is a custom writer for the old-school drivers that don't use an actual writer
StatusCode write(const void *data, unsigned long &len)
Write root byte buffer to output stream.
TFile * m_file
Age counter.
Some weak symbol referencing magic...
::StatusCode StatusCode
StatusCode definition for legacy code.
RootConnection(const IInterface *own, const std::string &pfn)
Standard constructor.
StatusCode connectWrite(const std::string &mode)
Open data stream in write mode.
StatusCode read(void *const data, size_t len)
Read root byte buffer from input stream.
Helpers for checking error return status codes and reporting errors.
#define REPORT_MESSAGE(LVL)
Report a message.
TTree * m_tree
Pointer to the main event data tree.
This file contains the class definition for the Athena::RootConnection class.
StatusCode setContainer(const std::string &container, const std::string &type)
Set the container name and type, creating TTree and TBranch as needed.
TBranch * m_branch
Pointer to the current data branch.
char m_branchTypeCode
Branch typecode for branch we are asked to write out.
#define ATLAS_THREAD_SAFE
Define macros for attributes used to control the static checker.