Go to the source code of this file.
◆ ALLOW_ALL_TYPES
◆ S_FAIL
◆ S_OK
◆ readValue< double >()
template<>
| istream & readValue< double > |
( |
istream & | is, |
|
|
double & | val ) |
|
inline |
Definition at line 89 of file RootNTupleCnv.cpp.
89 {
90 is >> val;
91 if ( is.fail() && !is.bad() && !is.eof() ) is.clear( is.rdstate() & ~std::ios::failbit );
92 return is;
93}
◆ readValue< float >()
template<>
| istream & readValue< float > |
( |
istream & | is, |
|
|
float & | val ) |
|
inline |
Definition at line 83 of file RootNTupleCnv.cpp.
83 {
84 is >> val;
85 if ( is.fail() && !is.bad() && !is.eof() ) is.clear( is.rdstate() & ~std::ios::failbit );
86 return is;
87}