Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-10-16 05:03:43

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/DTStatusFlagHandler.h"
0014 
0015 //-------------------------------
0016 // Collaborating Class Headers --
0017 //-------------------------------
0018 #include "CondFormats/DTObjects/interface/DTStatusFlag.h"
0019 
0020 //---------------
0021 // C++ Headers --
0022 //---------------
0023 #include <iostream>
0024 #include <fstream>
0025 
0026 //-------------------
0027 // Initializations --
0028 //-------------------
0029 
0030 //----------------
0031 // Constructors --
0032 //----------------
0033 DTStatusFlagHandler::DTStatusFlagHandler(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 DTStatusFlagHandler::~DTStatusFlagHandler() {}
0042 
0043 //--------------
0044 // Operations --
0045 //--------------
0046 void DTStatusFlagHandler::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   if (runNumber <= last) {
0080     std::cout << "More recent data already present - skipped" << std::endl;
0081     return;
0082   }
0083 
0084   DTStatusFlag* stFlag = new DTStatusFlag(dataTag);
0085 
0086   int status = 0;
0087   std::ifstream ifile(fileName.c_str());
0088   int whe;
0089   int sta;
0090   int sec;
0091   int qua;
0092   int lay;
0093   int cel;
0094   int noiseFlag;
0095   int feMask;
0096   int tdcMask;
0097   int trigMask;
0098   int deadFlag;
0099   int nohvFlag;
0100   while (ifile >> whe >> sta >> sec >> qua >> lay >> cel >> noiseFlag >> feMask >> tdcMask >> trigMask >> deadFlag >>
0101          nohvFlag) {
0102     status = stFlag->set(whe,
0103                          sta,
0104                          sec,
0105                          qua,
0106                          lay,
0107                          cel,
0108                          noiseFlag != 0,
0109                          feMask != 0,
0110                          tdcMask != 0,
0111                          trigMask != 0,
0112                          deadFlag != 0,
0113                          nohvFlag != 0);
0114     std::cout << whe << " " << sta << " " << sec << " " << qua << " " << lay << " " << cel << " " << noiseFlag << " "
0115               << feMask << " " << tdcMask << " " << trigMask << " " << deadFlag << " " << nohvFlag << "  -> ";
0116     std::cout << "insert status: " << status << std::endl;
0117   }
0118 
0119   /*
0120   unsigned int runf = irun;
0121   unsigned int runl = 0xffffffff;
0122   popcon::IOVPair iop = { runf, runl };
0123   std::cout << "APPEND NEW OBJECT: "
0124             << runf << " " << runl << " " << stFlag << std::endl;
0125   m_to_transfer->push_back( std::make_pair( stFlag, iop ) );
0126 */
0127 
0128   //for each payload provide IOV information (say in this case we use since)
0129   m_to_transfer.emplace_back(stFlag, runNumber);
0130 }
0131 
0132 std::string DTStatusFlagHandler::id() const { return dataTag; }