Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "CondTools/DT/interface/DTMtimeHandler.h"
00014
00015
00016
00017
00018 #include "CondFormats/DTObjects/interface/DTMtime.h"
00019
00020
00021
00022
00023 #include <iostream>
00024 #include <fstream>
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 DTMtimeHandler::DTMtimeHandler( 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
00042
00043 DTMtimeHandler::~DTMtimeHandler() {
00044 }
00045
00046
00047
00048
00049 void DTMtimeHandler::getNewObjects() {
00050
00051
00052 cond::TagInfo const & ti = tagInfo();
00053 unsigned int last = ti.lastInterval.first;
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086 DTMtime* mTime = new DTMtime( dataTag );
00087
00088 int status = 0;
00089 std::ifstream ifile( fileName.c_str() );
00090 int whe;
00091 int sta;
00092 int sec;
00093 int qua;
00094 float mti;
00095 float rms;
00096 while ( ifile >> whe
00097 >> sta
00098 >> sec
00099 >> qua
00100 >> mti
00101 >> rms ) {
00102 status = mTime->set( whe, sta, sec, qua, mti, rms,
00103 DTTimeUnits::counts );
00104 std::cout << whe << " "
00105 << sta << " "
00106 << sec << " "
00107 << qua << " "
00108 << mti << " "
00109 << rms << " -> ";
00110 std::cout << "insert status: " << status << std::endl;
00111 }
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123 cond::Time_t snc = runNumber;
00124 if ( runNumber > last )
00125 m_to_transfer.push_back( std::make_pair( mTime, snc ) );
00126 else
00127 std::cout << "More recent data already present - skipped" << std::endl;
00128
00129 return;
00130
00131 }
00132
00133
00134 std::string DTMtimeHandler::id() const {
00135 return dataTag;
00136 }
00137
00138