Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:37:39

0001 /*
0002  *  See header file for a description of this class.
0003  *
0004  *  $Date: 2009/09/16 11:00:18 $
0005  *  $Revision: 1.3.14.1 $
0006  *  \author Paolo Ronchese INFN Padova
0007  *
0008  */
0009 
0010 //-----------------------
0011 // This Class' Header --
0012 //-----------------------
0013 #include "CondTools/DT/interface/DTDeadFlagHandler.h"
0014 
0015 //-------------------------------
0016 // Collaborating Class Headers --
0017 //-------------------------------
0018 #include "CondFormats/DTObjects/interface/DTDeadFlag.h"
0019 
0020 //---------------
0021 // C++ Headers --
0022 //---------------
0023 #include <iostream>
0024 #include <fstream>
0025 
0026 //-------------------
0027 // Initializations --
0028 //-------------------
0029 
0030 //----------------
0031 // Constructors --
0032 //----------------
0033 DTDeadFlagHandler::DTDeadFlagHandler(const edm::ParameterSet& ps)
0034     : dataTag(ps.getParameter<std::string>("tag")),
0035       fileName(ps.getParameter<std::string>("file")),
0036       runNumber(ps.getParameter<unsigned int>("run")) {}
0037 
0038 //--------------
0039 // Destructor --
0040 //--------------
0041 DTDeadFlagHandler::~DTDeadFlagHandler() {}
0042 
0043 //--------------
0044 // Operations --
0045 //--------------
0046 void DTDeadFlagHandler::getNewObjects() {
0047   //to access the information on the tag inside the offline database:
0048   cond::TagInfo_t const& ti = tagInfo();
0049   cond::Time_t last = ti.lastInterval.since;
0050 
0051   //to access the information on last successful log entry for this tag:
0052   //  cond::LogDBEntry const & lde = logDBEntry();
0053 
0054   //to access the lastest payload (Ref is a smart pointer)
0055   //  Ref payload = lastPayload();
0056 
0057   /*
0058   int irun = event.id().run();
0059   int ievt = event.id().event();
0060   std::cout << "================ "
0061             << irun << " " << ievt << std::endl;
0062 
0063   std::map<std::string, popcon::PayloadIOV> mp = getOfflineInfo();
0064   std::map<std::string, popcon::PayloadIOV>::iterator iter = mp.begin();
0065   std::map<std::string, popcon::PayloadIOV>::iterator iend = mp.end();
0066   std::cout << "list of all tags: " << std::endl;
0067   while ( iter != iend ) {
0068     std::cout << "Tag: "                       << iter->first
0069               << " , last object valid since " << iter->second.last_since
0070               << " to "                        << iter->second.last_till
0071               << std::endl;
0072     iter++;
0073   }
0074 
0075   std::cout << "look for tag " << dataTag << std::endl;
0076   std::map<std::string, popcon::PayloadIOV>::iterator itag =
0077     mp.find( dataTag );
0078 */
0079 
0080   auto dFlag = std::make_unique<DTDeadFlag>(dataTag);
0081 
0082   int status = 0;
0083   std::ifstream ifile(fileName.c_str());
0084   int whe;
0085   int sta;
0086   int sec;
0087   int qua;
0088   int lay;
0089   int cel;
0090   int hv;
0091   int tp;
0092   int ro;
0093   int dc;
0094   while (ifile >> whe >> sta >> sec >> qua >> lay >> cel >> hv >> tp >> ro >> dc) {
0095     status = dFlag->set(whe, sta, sec, qua, lay, cel, hv != 0, tp != 0, ro != 0, dc != 0);
0096     std::cout << whe << " " << sta << " " << sec << " " << qua << " " << lay << " " << cel << " " << hv << " " << tp
0097               << " " << ro << " " << dc << "  -> ";
0098     std::cout << "insert status: " << status << std::endl;
0099   }
0100 
0101   /*
0102   unsigned int runf = irun;
0103   unsigned int runl = 0xffffffff;
0104   popcon::IOVPair iop = { runf, runl };
0105   std::cout << "APPEND NEW OBJECT: "
0106             << runf << " " << runl << " " << dFlag << std::endl;
0107   m_to_transfer->push_back( std::make_pair( dFlag, iop ) );
0108 */
0109 
0110   //for each payload provide IOV information (say in this case we use since)
0111   cond::Time_t snc = runNumber;
0112   if (runNumber > last)
0113     m_to_transfer.push_back(std::make_pair(dFlag.release(), snc));
0114   else
0115     std::cout << "More recent data already present - skipped" << std::endl;
0116 
0117   return;
0118 }
0119 
0120 std::string DTDeadFlagHandler::id() const { return dataTag; }