CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
DTDeadFlagHandler Class Reference

#include <DTDeadFlagHandler.h>

Inheritance diagram for DTDeadFlagHandler:
popcon::PopConSourceHandler< DTDeadFlag >

Public Member Functions

 DTDeadFlagHandler (const edm::ParameterSet &ps)
 
void getNewObjects ()
 
std::string id () const
 
virtual ~DTDeadFlagHandler ()
 
- Public Member Functions inherited from popcon::PopConSourceHandler< DTDeadFlag >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (cond::DbSession dbSession, cond::TagInfo const &tagInfo, cond::LogDBEntry const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry const & logDBEntry () const
 
std::pair< Container const
*, std::string const > 
operator() (cond::DbSession session, cond::TagInfo const &tagInfo, cond::LogDBEntry const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Attributes

std::string dataTag
 
std::string fileName
 
unsigned int runNumber
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< DTDeadFlag >
typedef std::vector< TripletContainer
 
typedef std::vector< std::pair
< DTDeadFlag *, cond::Time_t > > 
OldContainer
 
typedef PopConSourceHandler
< DTDeadFlag
self
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef DTDeadFlag value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< DTDeadFlag >
int add (value_type *payload, Summary *summary, Time_t time)
 
- Protected Attributes inherited from popcon::PopConSourceHandler< DTDeadFlag >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Description:

Date:
2008/02/15 18:15:02
Revision:
1.3
Author
Paolo Ronchese INFN Padova

Definition at line 35 of file DTDeadFlagHandler.h.

Constructor & Destructor Documentation

DTDeadFlagHandler::DTDeadFlagHandler ( const edm::ParameterSet ps)

Constructor

Definition at line 34 of file DTDeadFlagHandler.cc.

34  :
35  dataTag( ps.getParameter<std::string> ( "tag" ) ),
36  fileName( ps.getParameter<std::string> ( "file" ) ),
37  runNumber( ps.getParameter<unsigned int> ( "run" ) ) {
38 }
T getParameter(std::string const &) const
unsigned int runNumber
DTDeadFlagHandler::~DTDeadFlagHandler ( )
virtual

Destructor

Definition at line 43 of file DTDeadFlagHandler.cc.

43  {
44 }

Member Function Documentation

void DTDeadFlagHandler::getNewObjects ( )
virtual

Operations

Implements popcon::PopConSourceHandler< DTDeadFlag >.

Definition at line 49 of file DTDeadFlagHandler.cc.

References gather_cfg::cout, dataTag, fileName, compare_using_db::ifile, prof2calltree::last, cond::TagInfo::lastInterval, popcon::PopConSourceHandler< DTDeadFlag >::m_to_transfer, runNumber, DTDeadFlag::set(), ntuplemaker::status, and popcon::PopConSourceHandler< DTDeadFlag >::tagInfo().

49  {
50 
51  //to access the information on the tag inside the offline database:
52  cond::TagInfo const & ti = tagInfo();
53  unsigned int last = ti.lastInterval.first;
54 
55  //to access the information on last successful log entry for this tag:
56 // cond::LogDBEntry const & lde = logDBEntry();
57 
58  //to access the lastest payload (Ref is a smart pointer)
59 // Ref payload = lastPayload();
60 
61 /*
62  int irun = event.id().run();
63  int ievt = event.id().event();
64  std::cout << "================ "
65  << irun << " " << ievt << std::endl;
66 
67  std::map<std::string, popcon::PayloadIOV> mp = getOfflineInfo();
68  std::map<std::string, popcon::PayloadIOV>::iterator iter = mp.begin();
69  std::map<std::string, popcon::PayloadIOV>::iterator iend = mp.end();
70  std::cout << "list of all tags: " << std::endl;
71  while ( iter != iend ) {
72  std::cout << "Tag: " << iter->first
73  << " , last object valid since " << iter->second.last_since
74  << " to " << iter->second.last_till
75  << std::endl;
76  iter++;
77  }
78 
79  std::cout << "look for tag " << dataTag << std::endl;
80  std::map<std::string, popcon::PayloadIOV>::iterator itag =
81  mp.find( dataTag );
82 */
83 
84  DTDeadFlag* dFlag = new DTDeadFlag( dataTag );
85 
86  int status = 0;
87  std::ifstream ifile( fileName.c_str() );
88  int whe;
89  int sta;
90  int sec;
91  int qua;
92  int lay;
93  int cel;
94  int hv;
95  int tp;
96  int ro;
97  int dc;
98  while ( ifile >> whe
99  >> sta
100  >> sec
101  >> qua
102  >> lay
103  >> cel
104  >> hv
105  >> tp
106  >> ro
107  >> dc ) {
108  status = dFlag->set( whe, sta, sec, qua, lay, cel,
109  hv != 0, tp != 0, ro != 0, dc != 0 );
110  std::cout << whe << " "
111  << sta << " "
112  << sec << " "
113  << qua << " "
114  << lay << " "
115  << cel << " "
116  << hv << " "
117  << tp << " "
118  << ro << " "
119  << dc << " -> ";
120  std::cout << "insert status: " << status << std::endl;
121  }
122 
123 /*
124  unsigned int runf = irun;
125  unsigned int runl = 0xffffffff;
126  popcon::IOVPair iop = { runf, runl };
127  std::cout << "APPEND NEW OBJECT: "
128  << runf << " " << runl << " " << dFlag << std::endl;
129  m_to_transfer->push_back( std::make_pair( dFlag, iop ) );
130 */
131 
132  //for each payload provide IOV information (say in this case we use since)
133  cond::Time_t snc = runNumber;
134  if ( runNumber > last )
135  m_to_transfer.push_back( std::make_pair( dFlag, snc ) );
136  else
137  std::cout << "More recent data already present - skipped" << std::endl;
138 
139  return;
140 
141 }
int set(int wheelId, int stationId, int sectorId, int slId, int layerId, int cellId, bool dead_HV, bool dead_TP, bool dead_RO, bool discCat)
Definition: DTDeadFlag.cc:296
unsigned long long Time_t
Definition: Time.h:16
unsigned int runNumber
cond::ValidityInterval lastInterval
Definition: TagInfo.h:11
tuple cout
Definition: gather_cfg.py:121
tuple status
Definition: ntuplemaker.py:245
std::string DTDeadFlagHandler::id ( void  ) const
virtual

Implements popcon::PopConSourceHandler< DTDeadFlag >.

Definition at line 144 of file DTDeadFlagHandler.cc.

References dataTag.

144  {
145  return dataTag;
146 }

Member Data Documentation

std::string DTDeadFlagHandler::dataTag
private

Definition at line 55 of file DTDeadFlagHandler.h.

Referenced by getNewObjects(), and id().

std::string DTDeadFlagHandler::fileName
private

Definition at line 56 of file DTDeadFlagHandler.h.

Referenced by getNewObjects().

unsigned int DTDeadFlagHandler::runNumber
private

Definition at line 57 of file DTDeadFlagHandler.h.

Referenced by getNewObjects().