CMS 3D CMS Logo

CSCCableRead.h
Go to the documentation of this file.
1 #ifndef GUARD_csccableread_H
2 #define GUARD_csccableread_H
3 
4 #include <iostream>
6 #include <string>
7 
8 class csccableread {
9 private:
10  oracle::occi::Environment *env;
11  oracle::occi::Connection *con;
12 
13 public:
17  csccableread() noexcept(false);
21  ~csccableread() noexcept(false);
22 
23  void cable_read(int chamber_index,
24  std::string *chamber_label,
25  float *cfeb_length,
26  std::string *cfeb_rev,
27  float *alct_length,
28  std::string *alct_rev,
29  float *cfeb_tmb_skew_delay,
30  float *cfeb_timing_corr);
31 
32 }; // end of class csccableread
33 #endif
csccableread() noexcept(false)
Definition: CSCCableRead.cc:7
void cable_read(int chamber_index, std::string *chamber_label, float *cfeb_length, std::string *cfeb_rev, float *alct_length, std::string *alct_rev, float *cfeb_tmb_skew_delay, float *cfeb_timing_corr)
Definition: CSCCableRead.cc:26
oracle::occi::Environment * env
Definition: CSCCableRead.h:10
oracle::occi::Connection * con
Definition: CSCCableRead.h:11