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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#ifndef PixelTrimAllPixels_h
#define PixelTrimAllPixels_h
/**
* \file CalibFormats/SiPixelObjects/interface/PixelTrimAllPixels.h
* \brief This class implements..
*
* A longer explanation will be placed here later
*
*/
#include <string>
#include <vector>
#include "CalibFormats/SiPixelObjects/interface/PixelTrimBase.h"
#include "CalibFormats/SiPixelObjects/interface/PixelMaskBase.h"
#include "CalibFormats/SiPixelObjects/interface/PixelROCTrimBits.h"
#include "CalibFormats/SiPixelObjects/interface/PixelROCName.h"
#include "CalibFormats/SiPixelObjects/interface/PixelNameTranslation.h"
namespace pos {
/*! \ingroup TrimObjects "Trim Objects"
* \ingroup ConfigurationObjects "Configuration Objects"
*
* @{
*
* \class PixelTrimBase PixelTrimBase.h
* \brief This class implements..
*
* A longer explanation will be placed here later
*
*/
class PixelTrimAllPixels : public PixelTrimBase {
public:
PixelTrimAllPixels(std::string filename);
PixelTrimAllPixels(std::vector<std::vector<std::string> > &tableMat);
//Build the commands needed to configure ROCs
//on control link
void generateConfiguration(PixelFECConfigInterface *pixelFEC,
PixelNameTranslation *trans,
const PixelMaskBase &pixelMask) const override;
void writeBinary(std::string filename) const override;
void writeASCII(std::string filename) 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;
PixelROCTrimBits getTrimBits(int ROCId) const override;
PixelROCTrimBits *getTrimBits(PixelROCName name) override;
private:
std::vector<std::string> rocname_;
std::vector<PixelROCTrimBits> trimbits_;
};
} // namespace pos
/* @} */
#endif
|