Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:23

0001 #include "CalibMuon/CSCCalibration/test/stubs/CSCBadWiresHandler.h"
0002 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
0003 #include <iostream>
0004 
0005 #include "CalibMuon/CSCCalibration/interface/CSCBadWiresConditions.h"
0006 #include "CondFormats/CSCObjects/interface/CSCBadWires.h"
0007 
0008 popcon::CSCBadWiresImpl::CSCBadWiresImpl(const edm::ParameterSet &pset)
0009     : m_name(pset.getUntrackedParameter<std::string>("name", "CSCBadWiresImpl")) {}
0010 
0011 popcon::CSCBadWiresImpl::~CSCBadWiresImpl() {}
0012 
0013 void popcon::CSCBadWiresImpl::getNewObjects() {
0014   std::cout << "------- CSC src - > getNewObjects\n" << m_name;
0015 
0016   // fill object from file
0017   CSCBadWires *cnbadwires = CSCBadWiresConditions::prefillBadWires();
0018 
0019   // check whats already inside of database
0020 
0021   std::cerr << "got offlineInfo" << std::endl;
0022   std::cerr << tagInfo().name << " , last object valid since " << tagInfo().lastInterval.since << std::endl;
0023 
0024   unsigned int snc;
0025 
0026   std::cout << "Source implementation test ::getNewObjects : enter since ? \n";
0027   std::cin >> snc;
0028 
0029   m_to_transfer.push_back(std::make_pair(cnbadwires, snc));
0030 
0031   std::cout << "------- " << m_name << "CSC src - > getNewObjects -----------\n" << std::endl;
0032 }