6 : templateCalibrations_(conf_.getParameter<
vstring>(
"siPixelTemplateCalibrations")),
7 version_(conf_.getParameter<double>(
"Version")) {
8 edm::LogInfo(
"SiPixelFakeTemplateDBObjectESSource::SiPixelFakeTemplateDBObjectESSource");
12 findingRecord<SiPixelTemplateDBObjectRcd>();
36 for (
m = 0;
m <
obj->numOfTempl(); ++
m) {
38 tempfile = (
file.fullPath()).c_str();
42 if (in_file.is_open()) {
44 <<
"Opened Template File: " <<
file.fullPath().c_str() << std::endl;
47 char title_char[80],
c;
53 for (iter = 0; (
c = in_file.get()) !=
'\n' && iter < 79; ++iter) {
57 title_char[iter] =
'\n';
59 unsigned int ilast = 3 - (iter % 4);
60 for (
unsigned int it = 0; it != ilast; it++) {
61 title_char[iter] =
' ';
64 title_char[iter] =
'\n';
67 for (
unsigned int j = 0;
j <= iter;
j += 4) {
68 temp.c[0] = title_char[
j];
69 temp.c[1] = title_char[
j + 1];
70 temp.c[2] = title_char[
j + 2];
71 temp.c[3] = title_char[
j + 3];
73 obj->setMaxIndex(
obj->maxIndex() + 1);
78 while (!in_file.eof()) {
79 obj->setMaxIndex(
obj->maxIndex() + 1);
80 obj->push_back(tempstore);
87 edm::LogError(
"SiPixeFakelTemplateDBObjectESSource") <<
"Error opening File" << tempfile << std::endl;
92 return std::unique_ptr<SiPixelTemplateDBObject>(
obj);