#include <CondFormats/L1TObjects/interface/L1MuCSCTFAlignment.h>
Public Member Functions | |
L1MuCSCTFAlignment (const L1MuCSCTFAlignment &conf) | |
L1MuCSCTFAlignment (std::vector< double > cff) | |
L1MuCSCTFAlignment (void) | |
std::vector< double > | operator() () |
L1MuCSCTFAlignment & | operator= (const L1MuCSCTFAlignment &conf) |
~L1MuCSCTFAlignment (void) | |
Private Attributes | |
std::vector< double > | coefficients |
Definition at line 6 of file L1MuCSCTFAlignment.h.
L1MuCSCTFAlignment::L1MuCSCTFAlignment | ( | void | ) | [inline] |
L1MuCSCTFAlignment::L1MuCSCTFAlignment | ( | std::vector< double > | cff | ) | [inline] |
Definition at line 19 of file L1MuCSCTFAlignment.h.
References coefficients.
00019 { coefficients=cff; }
L1MuCSCTFAlignment::L1MuCSCTFAlignment | ( | const L1MuCSCTFAlignment & | conf | ) | [inline] |
Definition at line 20 of file L1MuCSCTFAlignment.h.
References coefficients.
00020 { 00021 coefficients = conf.coefficients; 00022 }
L1MuCSCTFAlignment::~L1MuCSCTFAlignment | ( | void | ) | [inline] |
std::vector<double> L1MuCSCTFAlignment::operator() | ( | ) | [inline] |
Definition at line 16 of file L1MuCSCTFAlignment.h.
References coefficients.
00016 { return coefficients; }
L1MuCSCTFAlignment& L1MuCSCTFAlignment::operator= | ( | const L1MuCSCTFAlignment & | conf | ) | [inline] |
Definition at line 11 of file L1MuCSCTFAlignment.h.
References coefficients.
00011 { 00012 coefficients = conf.coefficients; 00013 return *this; 00014 }
std::vector<double> L1MuCSCTFAlignment::coefficients [private] |
Definition at line 8 of file L1MuCSCTFAlignment.h.
Referenced by L1MuCSCTFAlignment(), operator()(), and operator=().