CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/CondTools/DT/src/DTReadOutMappingHandler.cc

Go to the documentation of this file.
00001 /*
00002  *  See header file for a description of this class.
00003  *
00004  *  $Date: 2008/02/15 18:14:48 $
00005  *  $Revision: 1.3 $
00006  *  \author Paolo Ronchese INFN Padova
00007  *
00008  */
00009 
00010 //-----------------------
00011 // This Class' Header --
00012 //-----------------------
00013 #include "CondTools/DT/interface/DTReadOutMappingHandler.h"
00014 
00015 //-------------------------------
00016 // Collaborating Class Headers --
00017 //-------------------------------
00018 #include "CondFormats/DTObjects/interface/DTReadOutMapping.h"
00019 
00020 //---------------
00021 // C++ Headers --
00022 //---------------
00023 #include <iostream>
00024 #include <fstream>
00025 
00026 //-------------------
00027 // Initializations --
00028 //-------------------
00029 
00030 
00031 //----------------
00032 // Constructors --
00033 //----------------
00034 DTReadOutMappingHandler::DTReadOutMappingHandler( const edm::ParameterSet& ps ):
00035  dataTag(   ps.getParameter<std::string>  (  "tag" ) ),
00036  fileName(  ps.getParameter<std::string>  ( "file" ) ),
00037  runNumber( ps.getParameter<unsigned int> (  "run" ) ) {
00038 }
00039 
00040 //--------------
00041 // Destructor --
00042 //--------------
00043 DTReadOutMappingHandler::~DTReadOutMappingHandler() {
00044 }
00045 
00046 //--------------
00047 // Operations --
00048 //--------------
00049 void DTReadOutMappingHandler::getNewObjects() {
00050 
00051   //to access the information on the tag inside the offline database:
00052   cond::TagInfo const & ti = tagInfo();
00053   unsigned int last = ti.lastInterval.first;
00054 
00055   //to access the information on last successful log entry for this tag:
00056 //  cond::LogDBEntry const & lde = logDBEntry();     
00057 
00058   //to access the lastest payload (Ref is a smart pointer)
00059 //  Ref payload = lastPayload();
00060 
00061 /*
00062   int irun = event.id().run();
00063   int ievt = event.id().event();
00064   std::cout << "================ "
00065             << irun << " " << ievt << std::endl;
00066 
00067   std::map<std::string, popcon::PayloadIOV> mp = getOfflineInfo();
00068   std::map<std::string, popcon::PayloadIOV>::iterator iter = mp.begin();
00069   std::map<std::string, popcon::PayloadIOV>::iterator iend = mp.end();
00070   std::cout << "list of all tags: " << std::endl;
00071   while ( iter != iend ) {
00072     std::cout << "Tag: "                       << iter->first
00073               << " , last object valid since " << iter->second.last_since
00074               << " to "                        << iter->second.last_till
00075               << std::endl;
00076     iter++;
00077   }
00078 
00079   std::cout << "look for tag " << dataTag << std::endl;
00080   std::map<std::string, popcon::PayloadIOV>::iterator itag =
00081     mp.find( dataTag );
00082 */
00083 
00084   std::string robMap( dataTag );
00085   std::string rosMap( dataTag );
00086   robMap += "_ROB";
00087   rosMap += "_ROS";
00088   DTReadOutMapping* ro_map = new DTReadOutMapping( robMap, rosMap );
00089 
00090   int status = 0;
00091   std::ifstream ifile( fileName.c_str() );
00092   int ddu;
00093   int ros;
00094   int rob;
00095   int tdc;
00096   int cha;
00097   int whe;
00098   int sta;
00099   int sec;
00100   int qua;
00101   int lay;
00102   int cel;
00103   while ( ifile >> ddu
00104                 >> ros
00105                 >> rob
00106                 >> tdc
00107                 >> cha
00108                 >> whe
00109                 >> sta
00110                 >> sec
00111                 >> qua
00112                 >> lay
00113                 >> cel ) {
00114     status = ro_map->insertReadOutGeometryLink( ddu, ros, rob, tdc, cha,
00115                                                 whe, sta, sec,
00116                                                 qua, lay, cel );
00117     std::cout << ddu << " "
00118               << ros << " "
00119               << rob << " "
00120               << tdc << " "
00121               << cha << " "
00122               << whe << " "
00123               << sta << " "
00124               << sec << " "
00125               << qua << " "
00126               << lay << " "
00127               << cel << "  -> ";                
00128     std::cout << "insert status: " << status << std::endl;
00129   }
00130 
00131 /*
00132   unsigned int runf = irun;
00133   unsigned int runl = 0xffffffff;
00134   popcon::IOVPair iop = { runf, runl };
00135   std::cout << "APPEND NEW OBJECT: "
00136             << runf << " " << runl << " " << ro_map << std::endl;
00137   m_to_transfer->push_back( std::make_pair( ro_map, iop ) );
00138 */
00139 
00140   //for each payload provide IOV information (say in this case we use since)
00141   cond::Time_t snc = runNumber;
00142   if ( runNumber > last )
00143        m_to_transfer.push_back( std::make_pair( ro_map, snc ) );
00144   else
00145        std::cout << "More recent data already present - skipped" << std::endl;
00146 
00147   return;
00148 
00149 }
00150 
00151 
00152 std::string DTReadOutMappingHandler::id() const {
00153   return dataTag;
00154 }
00155 
00156