1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#ifndef PixelMaxVsf_h
#define PixelMaxVsf_h
/**
* \file CalibFormats/SiPixelObjects/interface/PixelMaxVsf.h
* \brief This class specifies the maximum Vsf setting that should be used
* for each ROC.
*/
#include <map>
#include <string>
#include <vector>
#include "CalibFormats/SiPixelObjects/interface/PixelConfigBase.h"
#include "CalibFormats/SiPixelObjects/interface/PixelROCName.h"
namespace pos {
/*! \ingroup ConfigurationObjects "Configuration Objects"
*
* @{
*
* \class PixelMaxVsf PixelMaxVsf.h
* \brief This is the documentation about PixelMaxVsf...
*
* This class specifies the maximum Vsf setting that should be used
* for each ROC.
*/
class PixelMaxVsf : public PixelConfigBase {
public:
PixelMaxVsf(std::vector<std::vector<std::string> > &tableMat);
PixelMaxVsf(std::string filename);
void writeASCII(std::string dir = "") const override;
void writeXML(pos::PixelConfigKey key, int version, std::string path) const override { ; }
void writeXMLHeader(pos::PixelConfigKey key,
int version,
std::string path,
std::ofstream *out,
std::ofstream *out1 = nullptr,
std::ofstream *out2 = nullptr) const override;
void writeXML(std::ofstream *out, std::ofstream *out1 = nullptr, std::ofstream *out2 = nullptr) const override;
void writeXMLTrailer(std::ofstream *out,
std::ofstream *out1 = nullptr,
std::ofstream *out2 = nullptr) const override;
bool getVsf(PixelROCName roc, unsigned int &Vsf) const;
void setVsf(PixelROCName roc, unsigned int Vsf);
private:
std::map<PixelROCName, unsigned int> rocs_;
};
} // namespace pos
/* @} */
#endif
|