15 : m_name(ps.getUntrackedParameter<std::
string>(
"name",
"EcalTPGPedfromFileHandler")) {
16 std::cout <<
"EcalTPGPedfromFile constructor\n" << std::endl;
24 std::cout <<
"------- Ecal -> getNewObjects\n";
26 unsigned long long max_since = 1;
30 max_since =
tagInfo().lastInterval.since;
31 Tm max_since_tm(max_since);
34 std::cout <<
"PedfromFile which input IOV do you want " << std::endl;
37 std::ostringstream oss;
39 std::string fname =
"/afs/cern.ch/cms/ECAL/triggerTransp/TPG_beamv6_trans_" + oss.str() +
"_spikekill.txt";
40 fLin.open(fname.c_str());
41 if (!fLin.is_open()) {
42 std::cout <<
"ERROR : can't open file '" << fname << std::endl;
45 std::cout <<
" file " << fname <<
" opened" << std::endl;
47 for (
int i = 0;
i < 85;
i++)
54 for (
int iChannel = 0; iChannel <
kEBChannels; iChannel++) {
56 sscanf(line.c_str(),
"%s %u", cryst, &
id);
57 for (
int gain = 0; gain <
kGains; gain++) {
59 sscanf(line.c_str(),
"%X %X %X", &ped[gain], &mult[gain], &shift[gain]);
62 item.mult_x1 = mult[2];
63 item.mult_x6 = mult[1];
64 item.mult_x12 = mult[0];
65 item.shift_x1 = shift[2];
66 item.shift_x6 = shift[1];
67 item.shift_x12 = shift[0];
70 itemPed.mean_x1 = ped[2];
71 itemPed.mean_x6 = ped[1];
72 itemPed.mean_x12 = ped[0];
74 linC->
insert(std::make_pair(
id, item));
75 peds->
insert(std::make_pair(
id, itemPed));
78 std::cout <<
" comment line " << line << std::endl;
79 for (
int iChannel = 0; iChannel <
kEEChannels; iChannel++) {
82 sscanf(line.c_str(),
"%s %u", cryst, &
id);
84 for (
int gain = 0; gain <
kGains; gain++) {
87 sscanf(line.c_str(),
"%X %X %X", &ped[gain], &mult[gain], &shift[gain]);
91 item.mult_x1 = mult[2];
92 item.mult_x6 = mult[1];
93 item.mult_x12 = mult[0];
94 item.shift_x1 = shift[2];
95 item.shift_x6 = shift[1];
96 item.shift_x12 = shift[0];
99 itemPed.mean_x1 = ped[2];
100 itemPed.mean_x6 = ped[1];
101 itemPed.mean_x12 = ped[0];
103 linC->
insert(std::make_pair(
id, item));
104 peds->
insert(std::make_pair(
id, itemPed));
109 m_to_transfer.push_back(std::make_pair(peds, fileIOV));
111 std::cout <<
"Ecal -> end of getNewObjects -----------\n";
EcalTPGPedfromFile(edm::ParameterSet const &)
uint16_t *__restrict__ id
void getNewObjects() override
void insert(std::pair< uint32_t, Item > const &a)
~EcalTPGPedfromFile() override
std::unique_ptr< EcalTPGPedestals > Ref
static unsigned int const shift
EcalTPGPedestalsMap EcalTPGPedestals
EcalTPGLinearizationConstMap EcalTPGLinearizationConst