FACT++  1.0
void izstream::open ( const char *  name)
inline

Definition at line 72 of file izstream.h.

References clear(), and is_open().

Referenced by izstream(), and zfits::zfits().

73  {
74  if (is_open())
75  {
76  clear(rdstate()|std::ios::failbit);
77  return;
78  }
79 
80  fFile = gzopen(name, "rb");
81  if (fFile == 0)
82  {
83  clear(rdstate()|std::ios::failbit);
84  return;
85  }
86  }
int is_open()
Definition: izstream.h:65
gzFile fFile
Definition: izstream.h:20
void clear()
Definition: HeadersFTM.h:216

+ Here is the call graph for this function:

+ Here is the caller graph for this function: