Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions CondFormats/SiPixelTransient/interface/SiPixelGenError.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,18 @@ struct SiPixelGenErrorStore { //!< template storage structure
// ******************************************************************************************
class SiPixelGenError {
public:
SiPixelGenError(const std::vector<SiPixelGenErrorStore>& thePixelTemp) : thePixelTemp_(thePixelTemp) {
id_current_ = -1;
index_id_ = -1;
} //!< Constructor for cases in which template store already exists
SiPixelGenError(const std::vector<SiPixelGenErrorStore>& thePixelTemp)
: id_current_(-1),
index_id_(-1),
lorxwidth_(0),
lorywidth_(0),
lorxbias_(0),
lorybias_(0),
fbin_{0, 0, 0},
xsize_(0),
ysize_(0),
zsize_(0),
thePixelTemp_(thePixelTemp) {} //!< Constructor for cases in which template store already exists

// Load the private store with info from the file with the index (int) filenum from directory dir:
// ${dir}generror_summary_zp${filenum}.out
Expand Down