#include <RootIOAddress.h>
Inheritance diagram for RootOutputAddress:
Public Member Functions | |
| RootOutputAddress (const CLID &clid, const std::string &tespath) | |
| void | setStream (RootOutputStream *stream) |
| RootOutputStream * | stream () const |
| const std::string & | tespath () const |
| Return the TES (and TFile) path. | |
| std::string | tesdir () const |
| Return just the TES (and TFile) path. | |
| std::string | treename () const |
| Return just the tree / TES object name. | |
| std::string | branchname () const |
| Return a branch name based on the TES path. | |
| int | entry () const |
| void | setEntry (int entry) |
| virtual unsigned long | addRef () |
| virtual unsigned long | release () |
| virtual IRegistry * | registry () const |
| virtual void | setRegistry (IRegistry *pRegistry) |
| const CLID & | clID () const |
| void | setClID (const CLID &clid) |
| long | svcType () const |
| void | setSvcType (long typ) |
| virtual const std::string * | par () const |
| virtual const unsigned long * | ipar () const |
Protected Attributes | |
| unsigned long | m_refCount |
| long | m_svcType |
| CLID | m_clID |
| std::string | m_par [3] |
| unsigned long | m_ipar [2] |
| IRegistry * | m_pRegistry |
Definition at line 88 of file RootIOAddress.h.
| RootOutputAddress::RootOutputAddress | ( | const CLID & | clid, | |
| const std::string & | tespath | |||
| ) |
Definition at line 11 of file RootIOAddress.cc.
00012 : RootIOAddress<RootOutputStream>(clid,tespath) 00013 { 00014 }
| void RootIOAddress< RootOutputStream >::setStream | ( | RootOutputStream * | stream | ) | [inline, inherited] |
| RootOutputStream * RootIOAddress< RootOutputStream >::stream | ( | ) | const [inline, inherited] |
| const std::string& RootIOAddress< RootOutputStream >::tespath | ( | ) | const [inline, inherited] |
Return the TES (and TFile) path.
The last element is the tree / TES object name.
Definition at line 49 of file RootIOAddress.h.
00049 { return m_par[0]; }
| std::string RootIOAddress< RootOutputStream >::tesdir | ( | ) | const [inline, inherited] |
Return just the TES (and TFile) path.
As above but the TES object name is removed. If top level, then "/" is returned.
Definition at line 53 of file RootIOAddress.h.
00053 { 00054 std::string::size_type slash = m_par[0].rfind('/'); 00055 if (!slash || slash == std::string::npos) return "/"; 00056 return m_par[0].substr(0,slash); 00057 }
| std::string RootIOAddress< RootOutputStream >::treename | ( | ) | const [inline, inherited] |
Return just the tree / TES object name.
Definition at line 60 of file RootIOAddress.h.
00060 { 00061 std::string::size_type slash = m_par[0].rfind('/'); 00062 if (!slash || slash == std::string::npos) return m_par[0]; 00063 return m_par[0].substr(slash+1); 00064 }
| std::string RootIOAddress< RootOutputStream >::branchname | ( | ) | const [inline, inherited] |
Return a branch name based on the TES path.
Definition at line 67 of file RootIOAddress.h.
00067 { 00068 return RootIO::branchname(tespath()); 00069 }
| int RootIOAddress< RootOutputStream >::entry | ( | ) | const [inline, inherited] |
| void RootIOAddress< RootOutputStream >::setEntry | ( | int | entry | ) | [inline, inherited] |
1.4.7