CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DTTPGLutFile Class Reference

#include <DTTPGLutFile.h>

Public Member Functions

bool bad ()
 return status of file stream More...
 
void close ()
 close file More...
 
 DTTPGLutFile (const std::string name="")
 constructor More...
 
 DTTPGLutFile (const DTTPGLutFile &)
 copy constructor More...
 
std::string getName () const
 return filename More...
 
bool good ()
 return status of file stream More...
 
void ignoreLines (int n)
 read and ignore n lines from file More...
 
int open ()
 open file More...
 
DTTPGLutFileoperator= (const DTTPGLutFile &)
 assignment operator More...
 
int readHex ()
 read one hex from file More...
 
int readInteger ()
 read one integer from file More...
 
std::string readString ()
 read one string from file More...
 
virtual ~DTTPGLutFile ()
 destructor More...
 

Private Attributes

std::string m_file
 
std::ifstream m_fin
 

Detailed Description

Auxiliary class to handle Look-up table files

Author
N. Neumeister CERN EP

Definition at line 35 of file DTTPGLutFile.h.

Constructor & Destructor Documentation

DTTPGLutFile::DTTPGLutFile ( const std::string  name = "")

constructor

DTTPGLutFile::DTTPGLutFile ( const DTTPGLutFile in)

copy constructor

Definition at line 43 of file DTTPGLutFile.cc.

43 : m_file(in.m_file) {}
std::string m_file
Definition: DTTPGLutFile.h:79
DTTPGLutFile::~DTTPGLutFile ( )
virtual

destructor

Definition at line 49 of file DTTPGLutFile.cc.

49 {}

Member Function Documentation

bool DTTPGLutFile::bad ( )
inline

return status of file stream

Definition at line 60 of file DTTPGLutFile.h.

References m_fin.

60 { return m_fin.bad(); }
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
void DTTPGLutFile::close ( void  )
inline
std::string DTTPGLutFile::getName ( void  ) const
inline

return filename

Definition at line 51 of file DTTPGLutFile.h.

References m_file, and open().

Referenced by plotting.Plot::draw().

51 { return m_file; }
std::string m_file
Definition: DTTPGLutFile.h:79
bool DTTPGLutFile::good ( )
inline

return status of file stream

Definition at line 57 of file DTTPGLutFile.h.

References m_fin.

57 { return m_fin.good(); }
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
void DTTPGLutFile::ignoreLines ( int  n)

read and ignore n lines from file

Definition at line 73 of file DTTPGLutFile.cc.

References mps_fire::i, m_fin, and gen::n.

Referenced by close().

73  {
74 
75  char buf[256];
76  for (int i = 0; i < n; i++)
77  m_fin.getline(buf, 256);
78 }
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
int DTTPGLutFile::open ( )

open file

Definition at line 61 of file DTTPGLutFile.cc.

References gather_cfg::cout, cmsPerfSuiteHarvest::file_name, recoMuon::in, m_file, and m_fin.

Referenced by getName(), and DTTracoLUTs::load().

61  {
62 
63  const char *file_name = m_file.c_str();
64  m_fin.open(file_name, ios::in);
65  if (!m_fin) {
66  cout << "can not open file : " << file_name << endl;
67  return -1;
68  } else {
69  return 0;
70  }
71 }
std::string m_file
Definition: DTTPGLutFile.h:79
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
DTTPGLutFile & DTTPGLutFile::operator= ( const DTTPGLutFile lut)

assignment operator

Definition at line 55 of file DTTPGLutFile.cc.

References m_file.

55  {
56 
57  m_file = lut.m_file;
58  return *this;
59 }
std::string m_file
Definition: DTTPGLutFile.h:79
int DTTPGLutFile::readHex ( )

read one hex from file

Definition at line 87 of file DTTPGLutFile.cc.

References m_fin, and tmp.

Referenced by close(), and DTTracoLUTs::load().

87  {
88 
89  int tmp = 0;
90  m_fin >> hex >> tmp;
91  return tmp;
92 }
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
int DTTPGLutFile::readInteger ( )

read one integer from file

Definition at line 80 of file DTTPGLutFile.cc.

References m_fin, and tmp.

Referenced by close().

80  {
81 
82  int tmp = 0;
83  m_fin >> tmp;
84  return tmp;
85 }
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
string DTTPGLutFile::readString ( )

read one string from file

Definition at line 94 of file DTTPGLutFile.cc.

References m_fin, and tmp.

Referenced by close().

94  {
95 
96  string tmp;
97  m_fin >> tmp;
98  return tmp;
99 }
std::ifstream m_fin
Definition: DTTPGLutFile.h:78
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100

Member Data Documentation

std::string DTTPGLutFile::m_file
private

Definition at line 79 of file DTTPGLutFile.h.

Referenced by getName(), open(), and operator=().

std::ifstream DTTPGLutFile::m_fin
private

Definition at line 78 of file DTTPGLutFile.h.

Referenced by bad(), close(), good(), ignoreLines(), open(), readHex(), readInteger(), and readString().