![]() |
![]() |
#include <L1TriggerConfig/DTTPGConfigProducers/interface/DTConfigDBProducer.h>
Public Member Functions | |
void | configFromCfg () |
DTConfigDBProducer (const edm::ParameterSet &) | |
std::auto_ptr< DTConfigManager > | produce (const DTConfigManagerRcd &) |
int | readDTCCBConfig (const DTConfigManagerRcd &iRecord) |
~DTConfigDBProducer () | |
Private Member Functions | |
std::string | mapEntryName (const DTChamberId &chambid) const |
Private Attributes | |
bool | cfgConfig |
bool | flagDBBti |
bool | flagDBLUTS |
bool | flagDBTraco |
bool | flagDBTSM |
bool | flagDBTSS |
int | m_debugBti |
bool | m_debugDB |
bool | m_debugLUTs |
bool | m_debugSC |
int | m_debugTraco |
bool | m_debugTSP |
bool | m_debugTST |
bool | m_debugTU |
DTConfigManager * | m_manager |
edm::ParameterSet | m_ps |
bool | m_TracoLutsFromDB |
bool | m_UseBtiAcceptParam |
Description: A Producer for the DT config, data retrieved from DB
Implementation: <Notes on="" implementation>="">
Definition at line 53 of file DTConfigDBProducer.h.
DTConfigDBProducer::DTConfigDBProducer | ( | const edm::ParameterSet & | p | ) |
Definition at line 42 of file DTConfigDBProducer.cc.
References cfgConfig, flagDBBti, flagDBLUTS, flagDBTraco, flagDBTSM, flagDBTSS, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), m_debugBti, m_debugDB, m_debugLUTs, m_debugSC, m_debugTraco, m_debugTSP, m_debugTST, m_debugTU, m_manager, m_ps, L1TEmulatorMonitor_cff::p, produce(), DTConfigManager::setDTTPGDebug(), DTConfigManager::setLutFromDB(), DTConfigManager::setUseAcceptParam(), and edm::ESProducer::setWhatProduced().
{ // tell the framework what record is being produced setWhatProduced(this,&DTConfigDBProducer::produce); // parameters to setup // @@@ remove // contact = p.getParameter< std::string >("contact"); // auth_path = p.getParameter< std::string >("authPath"); // token = p.getParameter< std::string >("token"); // local = p.getParameter< bool >("siteLocalConfig"); // @@@ add cfgConfig = p.getParameter< bool >("cfgConfig"); // @@@ remove direct DB access /* if ( local ) catalog = ""; else catalog = p.getParameter< std::string >("catalog"); // create DB session session = new DTDB1Session( contact, catalog, auth_path, local ); session->connect( false ); // create an interface to handle configurations list DTConfig1Handler::maxBrickNumber = 100; DTConfig1Handler::maxStringNumber = 10000; DTConfig1Handler::maxByteNumber = 1000000; rs = 0; ri = DTConfig1Handler::create( session, token ); rs = ri->getContainer(); */ // get and store parameter set and config manager pointer m_ps = p; m_manager = new DTConfigManager(); // debug flags m_debugDB = p.getParameter< bool >("debugDB"); m_debugBti = p.getParameter< int >("debugBti"); m_debugTraco = p.getParameter< int >("debugTraco"); m_debugTSP = p.getParameter< bool >("debugTSP"); m_debugTST = p.getParameter< bool >("debugTST"); m_debugTU = p.getParameter< bool >("debugTU"); m_debugSC = p.getParameter< bool >("debugSC"); m_debugLUTs = p.getParameter< bool >("debugLUTs"); // DB specific requests bool tracoLutsFromDB = p.getParameter< bool >("TracoLutsFromDB"); bool useBtiAcceptParam = p.getParameter< bool >("UseBtiAcceptParam"); // initialize flags to check if data are present in OMDS flagDBBti = false; flagDBTraco = false; flagDBTSS = false; flagDBTSM = false; flagDBLUTS = false; // set debug edm::ParameterSet conf_ps = m_ps.getParameter<edm::ParameterSet>("DTTPGParameters"); bool dttpgdebug = conf_ps.getUntrackedParameter<bool>("Debug"); m_manager->setDTTPGDebug(dttpgdebug); // set specific DB requests m_manager->setLutFromDB(tracoLutsFromDB); m_manager->setUseAcceptParam(useBtiAcceptParam); }
DTConfigDBProducer::~DTConfigDBProducer | ( | ) |
Definition at line 110 of file DTConfigDBProducer.cc.
{ // destruction time // @@@ remove // DTConfig1Handler::remove( session ); // session->disconnect(); // delete session; }
void DTConfigDBProducer::configFromCfg | ( | ) |
Definition at line 495 of file DTConfigDBProducer.cc.
References gather_cfg::cout, flagDBBti, flagDBTraco, flagDBTSM, flagDBTSS, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), m_manager, m_ps, mapEntryName(), DTChamberId::sector(), DTConfigManager::setDTConfigBti(), DTConfigManager::setDTConfigSectColl(), DTConfigManager::setDTConfigTraco(), DTConfigManager::setDTConfigTrigUnit(), DTConfigManager::setDTConfigTSPhi(), DTConfigManager::setDTConfigTSTheta(), DTChamberId::station(), and DTChamberId::wheel().
Referenced by produce(), and readDTCCBConfig().
{ //create config classes&C. edm::ParameterSet conf_ps = m_ps.getParameter<edm::ParameterSet>("DTTPGParameters"); edm::ParameterSet conf_map = m_ps.getUntrackedParameter<edm::ParameterSet>("DTTPGMap"); bool dttpgdebug = conf_ps.getUntrackedParameter<bool>("Debug"); DTConfigSectColl sectcollconf(conf_ps.getParameter<edm::ParameterSet>("SectCollParameters")); edm::ParameterSet tups = conf_ps.getParameter<edm::ParameterSet>("TUParameters"); DTConfigBti bticonf(tups.getParameter<edm::ParameterSet>("BtiParameters")); DTConfigTraco tracoconf(tups.getParameter<edm::ParameterSet>("TracoParameters")); DTConfigTSTheta tsthetaconf(tups.getParameter<edm::ParameterSet>("TSThetaParameters")); DTConfigTSPhi tsphiconf(tups.getParameter<edm::ParameterSet>("TSPhiParameters")); DTConfigTrigUnit trigunitconf(tups); for (int iwh=-2;iwh<=2;++iwh){ for (int ist=1;ist<=4;++ist){ for (int ise=1;ise<=12;++ise){ DTChamberId chambid(iwh,ist,ise); vector<int> nmap = conf_map.getUntrackedParameter<vector<int> >(mapEntryName(chambid).c_str()); if(dttpgdebug) { cout << " Filling configuration for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << endl; } //fill the bti map if(!flagDBBti){ for (int isl=1;isl<=3;isl++){ int ncell = nmap[isl-1]; // cout << ncell <<" , "; for (int ibti=0;ibti<ncell;ibti++){ m_manager->setDTConfigBti(DTBtiId(chambid,isl,ibti+1),bticonf); if(dttpgdebug) cout << "Filling BTI config for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << "... sl " << isl << ", bti " << ibti+1 << endl; } } } // fill the traco map if(!flagDBTraco){ int ntraco = nmap[3]; //cout << ntraco << " }" << endl; for (int itraco=0;itraco<ntraco;itraco++){ m_manager->setDTConfigTraco(DTTracoId(chambid,itraco+1),tracoconf); if(dttpgdebug) cout << "Filling TRACO config for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << ", traco " << itraco+1 << endl; } } // fill TS & TrigUnit if(!flagDBTSS || !flagDBTSM) { m_manager->setDTConfigTSTheta(chambid,tsthetaconf); m_manager->setDTConfigTSPhi(chambid,tsphiconf); m_manager->setDTConfigTrigUnit(chambid,trigunitconf); } } } } for (int iwh=-2;iwh<=2;++iwh){ for (int ise=13;ise<=14;++ise){ int ist =4; DTChamberId chambid(iwh,ist,ise); vector<int> nmap = conf_map.getUntrackedParameter<vector<int> >(mapEntryName(chambid).c_str()); if(dttpgdebug) { cout << " Filling configuration for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << endl; } //fill the bti map if(!flagDBBti){ for (int isl=1;isl<=3;isl++){ int ncell = nmap[isl-1]; // cout << ncell <<" , "; for (int ibti=0;ibti<ncell;ibti++){ m_manager->setDTConfigBti(DTBtiId(chambid,isl,ibti+1),bticonf); if(dttpgdebug) cout << "Filling BTI config for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << "... sl " << isl << ", bti " << ibti+1 << endl; } } } // fill the traco map if(!flagDBTraco){ int ntraco = nmap[3]; // cout << ntraco << " }" << endl; for (int itraco=0;itraco<ntraco;itraco++){ m_manager->setDTConfigTraco(DTTracoId(chambid,itraco+1),tracoconf); if(dttpgdebug) cout << "Filling TRACO config for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << ", traco " << itraco+1 << endl; } } // fill TS & TrigUnit if(!flagDBTSS || !flagDBTSM) { m_manager->setDTConfigTSTheta(chambid,tsthetaconf); m_manager->setDTConfigTSPhi(chambid,tsphiconf); m_manager->setDTConfigTrigUnit(chambid,trigunitconf); } } } //loop on Sector Collectors for (int wh=-2;wh<=2;wh++) for (int se=1;se<=12;se++) m_manager->setDTConfigSectColl(DTSectCollId(wh,se),sectcollconf); return; }
std::string DTConfigDBProducer::mapEntryName | ( | const DTChamberId & | chambid | ) | const [private] |
Definition at line 480 of file DTConfigDBProducer.cc.
References DTChamberId::sector(), DTChamberId::station(), and DTChamberId::wheel().
Referenced by configFromCfg().
std::auto_ptr< DTConfigManager > DTConfigDBProducer::produce | ( | const DTConfigManagerRcd & | iRecord | ) |
Definition at line 124 of file DTConfigDBProducer.cc.
References cfgConfig, configFromCfg(), gather_cfg::cout, m_manager, and readDTCCBConfig().
Referenced by DTConfigDBProducer().
{ using namespace edm::es; int code; if(cfgConfig){ configFromCfg(); code = 2; } else code = readDTCCBConfig(iRecord); if(code==-1) cout << "ERROR code: please check!" << endl; if(code==1) cout << "Empty DB: configurations has been read from cfg!" << endl; if(code==2) cout << "Trivial : configurations has been read from cfg!" << endl; if(code==0) cout << "Configurations successfully read from OMDS!" << endl; std::auto_ptr<DTConfigManager> dtConfig = std::auto_ptr<DTConfigManager>( m_manager ); return dtConfig ; }
int DTConfigDBProducer::readDTCCBConfig | ( | const DTConfigManagerRcd & | iRecord | ) |
Definition at line 153 of file DTConfigDBProducer.cc.
References trackerHits::c, alignmentValidation::c1, configFromCfg(), gather_cfg::cout, end, flagDBBti, flagDBLUTS, flagDBTraco, flagDBTSM, flagDBTSS, DTPosNegType::getCT(), DTConfigAbstractHandler::getInstance(), edm::ParameterSet::getParameter(), DTPosNegType::getPN(), edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::getRecord(), edm::ParameterSet::getUntrackedParameter(), i, o2o::iov, list(), DTConfigManager::lutFromDB(), m_debugBti, m_debugDB, m_debugLUTs, m_debugSC, m_debugTraco, m_debugTSP, m_debugTST, m_debugTU, m_manager, m_ps, DTChamberId::sector(), DTCCBId::sectorId, DTConfigSectColl::setDebug(), DTConfigTraco::setDebug(), DTConfigBti::setDebug(), DTConfigTrigUnit::setDebug(), DTConfigLUTs::setDebug(), DTConfigManager::setDTConfigBti(), DTConfigManager::setDTConfigLUTs(), DTConfigManager::setDTConfigSectColl(), DTConfigManager::setDTConfigTraco(), DTConfigManager::setDTConfigTrigUnit(), DTConfigManager::setDTConfigTSPhi(), DTConfigManager::setDTConfigTSTheta(), DTConfigManager::setLutFromDB(), DTChamberId::station(), DTCCBId::stationId, edm::eventsetup::EventSetupRecord::validityInterval(), DTChamberId::wheel(), and DTCCBId::wheelId.
Referenced by produce().
{ using namespace edm::eventsetup; // get DTCCBConfigRcd from DTConfigManagerRcd (they are dependent records) edm::ESHandle<DTCCBConfig> ccb_conf; iRecord.getRecord<DTCCBConfigRcd>().get(ccb_conf); int ndata = std::distance( ccb_conf->begin(), ccb_conf->end() ); // @@@ add DTConfigAbstractHandler* cfgCache = DTConfigAbstractHandler::getInstance(); const DTKeyedConfigListRcd& keyRecord = iRecord.getRecord<DTKeyedConfigListRcd>(); if(m_debugDB) { cout << ccb_conf->version() << endl; cout << ndata << " data in the container" << endl; // SV 090928 : update for Paolo Ronchese new tags CondFormats/DTObjects V07-01-02 and CondTools/DT V07-01-02 // cout << "Full config key: " << ccb_conf->fullKey() << endl; } edm::ValidityInterval iov(iRecord.getRecord<DTCCBConfigRcd>().validityInterval() ); unsigned int currValidityStart = iov.first().eventID().run(); unsigned int currValidityEnd = iov.last( ).eventID().run(); if(m_debugDB) cout << "valid since run " << currValidityStart << " to run " << currValidityEnd << endl; // if there are no data in the container, configuration from cfg files... if( ndata==0 ){ configFromCfg(); return 1; } // get DTTPGMap for retrieving bti number and traco number edm::ParameterSet conf_map = m_ps.getUntrackedParameter<edm::ParameterSet>("DTTPGMap"); // loop over chambers DTCCBConfig::ccb_config_map configKeys( ccb_conf->configKeyMap() ); DTCCBConfig::ccb_config_iterator iter = configKeys.begin(); DTCCBConfig::ccb_config_iterator iend = configKeys.end(); // read data from CCBConfig while ( iter != iend ) { // get chamber id const DTCCBId& ccbId = iter->first; if(m_debugDB) cout << " Filling configuration for chamber : wh " << ccbId.wheelId << " st " << ccbId.stationId << " se " << ccbId.sectorId << " -> " << endl; // get chamber type and id from ccbId int mbtype = DTPosNegType::getCT( ccbId.wheelId, ccbId.sectorId, ccbId.stationId ); int posneg = DTPosNegType::getPN( ccbId.wheelId, ccbId.sectorId, ccbId.stationId ); if(m_debugDB) cout << "Chamber type : " << mbtype << " posneg : " << posneg << endl; DTChamberId chambid(ccbId.wheelId, ccbId.stationId, ccbId.sectorId); // get brick identifiers list const std::vector<int>& ccbConf = iter->second; std::vector<int>::const_iterator cfgIter = ccbConf.begin(); std::vector<int>::const_iterator cfgIend = ccbConf.end(); //TSS-TSM buffers unsigned short int tss_buffer[7][31]; unsigned short int tsm_buffer[9]; int ntss=0; // loop over configuration bricks while ( cfgIter != cfgIend ) { // get brick identifier int id = *cfgIter++; if(m_debugDB) cout << " BRICK " << id << endl; // create strings list // @@@ change to vector of strings in place of vector of pointers to string // std::vector<const std::string*> list; std::vector<std::string> list; // @@@ change access to DB // ri->getData( id, list ); // const DTKeyedConfig* kBrick = 0; cfgCache->getData( keyRecord, id, list ); // loop over strings // @@@ change to vector of strings in place of vector of pointers to string // std::vector<const std::string*>::const_iterator s_iter = list.begin(); // std::vector<const std::string*>::const_iterator s_iend = list.end(); std::vector<std::string>::const_iterator s_iter = list.begin(); std::vector<std::string>::const_iterator s_iend = list.end(); while ( s_iter != s_iend ) { // @@@ change to string in place of pointer to string if(m_debugDB) cout << " ----> " << *s_iter << endl; // cout << " ----> " << **s_iter << endl; // copy string in unsigned int buffer // @@@ change to string in place of pointer to string // std::string str = **s_iter++; std::string str = *s_iter++; unsigned short int buffer[100]; //2 bytes int c = 0; const char* cstr = str.c_str(); const char* ptr = cstr + 2; const char* end = cstr + str.length(); while ( ptr < end ) { char c1 = *ptr++; int i1 = 0; if ( ( c1 >= '0' ) && ( c1 <= '9' ) ) i1 = c1 - '0'; if ( ( c1 >= 'a' ) && ( c1 <= 'f' ) ) i1 = 10 + c1 - 'a'; if ( ( c1 >= 'A' ) && ( c1 <= 'F' ) ) i1 = 10 + c1 - 'A'; char c2 = *ptr++; int i2 = 0; if ( ( c2 >= '0' ) && ( c2 <= '9' ) ) i2 = c2 - '0'; if ( ( c2 >= 'a' ) && ( c2 <= 'f' ) ) i2 = 10 + c2 - 'a'; if ( ( c2 >= 'A' ) && ( c2 <= 'F' ) ) i2 = 10 + c2 - 'A'; buffer[c] = ( i1 * 16 ) + i2; c++; }// end loop over string // BTI configuration string if (buffer[2]==0x54){ // BTI configuration read for BTI flagDBBti = true; // compute sl and bti number from board and chip int brd=buffer[3]; // Board Nr. int chip=buffer[4]; // Chip Nr. if (brd>7) { cout << "Not existing board ... " << brd << endl; return -1; // Non-existing board } if (chip>31) { cout << "Not existing chip... " << chip << endl; return -1; // Non existing chip } // Is it Phi or Theta board? bool ThetaSL, PhiSL; PhiSL=false; ThetaSL=false; switch (mbtype) { case 1: // mb1 if (brd==6 || brd==7) { ThetaSL=true; brd-=6; } else if ((brd<3 && chip<32) || (brd==3 && chip<8)) PhiSL=true; break; case 2: // mb2 if (brd==6 || brd==7) { ThetaSL=true; brd-=6; } else if (brd<4 && chip<32) PhiSL=true; break; case 3: // mb3 if (brd==6 || brd==7) { ThetaSL=true; brd-=6; } else if (brd<5 && chip<32) PhiSL=true; break; case 4: // mb4-s, mb4_8 if (brd<6 && chip<32) PhiSL=true; break; case 5: // mb4-9 if (brd<3 && chip<32) PhiSL=true; break; case 6: // mb4-4 if (brd<5 && chip<32) PhiSL=true; break; case 7: // mb4-10 if (brd<4 && chip<32) PhiSL=true; break; } if (!PhiSL && !ThetaSL) { cout << "MB type " << mbtype << endl; cout << "Board " << brd << " chip " <<chip << endl; cout << "Not phi SL nor Theta SL" << endl; return -1; // Not PhiSL nor ThetaSL } // compute SL number and bti number int isl; int ibti; if (PhiSL) { if ((chip%8)<4) isl=1; // Phi1 else isl=3; // Phi2 ibti=brd*16+(int)(chip/8)*4+(chip%4); } else if (ThetaSL){ isl=2; // Theta if ((chip%8)<4) ibti=brd*32+ chip-4*(int)(chip/8); else ibti=brd*32+ chip+12-4*(int)(chip/8); } // BTI config constructor from strings DTConfigBti bticonf(buffer); bticonf.setDebug(m_debugBti); m_manager->setDTConfigBti(DTBtiId(chambid,isl,ibti+1),bticonf); if(m_debugDB) cout << "Filling BTI config for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << "... sl " << isl << ", bti " << ibti+1 << endl; } // TRACO configuration string if (buffer[2]==0x15){ // TRACO configuration read from OMDS flagDBTraco = true; // TRACO config constructor from strings int traco_brd = buffer[3]; // Board Nr.; int traco_chip = buffer[4]; // Chip Nr.; int itraco = traco_brd * 4 + traco_chip + 1; DTConfigTraco tracoconf(buffer); tracoconf.setDebug(m_debugTraco); m_manager->setDTConfigTraco(DTTracoId(chambid,itraco),tracoconf); if(m_debugDB) cout << "Filling TRACO config for chamber : wh " << chambid.wheel() << ", st " << chambid.station() << ", se " << chambid.sector() << ", board " << traco_brd << ", chip " << traco_chip << ", traco " << itraco << endl; } // TSS configuration string if (buffer[2]==0x16){ // TSS configuration read from OMDS flagDBTSS = true; unsigned short int itss=buffer[3]; for (int i=0;i<31;i++) tss_buffer[itss][i]=buffer[i]; ntss++; } // TSM configuration string if (buffer[2]==0x17){ // TSM configuration read from OMDS flagDBTSM = true; for (int i=0; i<9; i++) tsm_buffer[i]=buffer[i]; } // LUT configuration string if (buffer[2]==0xA8){ // LUT parameters read from OMDS flagDBLUTS = true; DTConfigLUTs lutconf(buffer); lutconf.setDebug(m_debugLUTs); m_manager->setDTConfigLUTs(chambid,lutconf); } }//end string iteration }//end brick iteration //TSS + TSM configurations are set in DTConfigTSPhi constructor DTConfigTSPhi tsphiconf(m_debugTSP,tss_buffer,ntss,tsm_buffer); m_manager->setDTConfigTSPhi(chambid,tsphiconf); // get configuration for TSTheta, SC and TU from .cfg edm::ParameterSet conf_ps = m_ps.getParameter<edm::ParameterSet>("DTTPGParameters"); edm::ParameterSet tups = conf_ps.getParameter<edm::ParameterSet>("TUParameters"); // TSTheta configuration from .cfg DTConfigTSTheta tsthetaconf(tups.getParameter<edm::ParameterSet>("TSThetaParameters")); tsthetaconf.setDebug(m_debugTST); m_manager->setDTConfigTSTheta(chambid,tsthetaconf); // SC configuration from .cfg DTConfigSectColl sectcollconf(conf_ps.getParameter<edm::ParameterSet>("SectCollParameters")); sectcollconf.setDebug(m_debugSC); m_manager->setDTConfigSectColl(DTSectCollId(chambid.wheel(),chambid.sector()),sectcollconf); // TU configuration from .cfg DTConfigTrigUnit trigunitconf(tups); trigunitconf.setDebug(m_debugTU); m_manager->setDTConfigTrigUnit(chambid,trigunitconf); ++iter; } // SV 100511 add check flag for lut configuration // if no lut configuration is found, luts are computed from geometry! if(!flagDBLUTS && m_manager->lutFromDB()==true){ cout << "*** ATTENTION: Lut configuration parameters NOT found in OMDS:" << endl; cout << "*** RE_RUN with the option TracoLutsFromDB = cms.bool(False)" << endl; cout << "*** in L1TriggerConfig/DTTPGConfigProducers/python/L1DTConfigFromDB_cfi.py" << endl; cout << "*** In this run LUTS are computed FROM GEOMETRY! " << endl; m_manager->setLutFromDB(false); return -1; } if(!flagDBBti || !flagDBTraco || !flagDBTSS || !flagDBTSM ){ configFromCfg(); return 1; } return 0; }
bool DTConfigDBProducer::cfgConfig [private] |
Definition at line 91 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and produce().
bool DTConfigDBProducer::flagDBBti [private] |
Definition at line 98 of file DTConfigDBProducer.h.
Referenced by configFromCfg(), DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::flagDBLUTS [private] |
Definition at line 98 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::flagDBTraco [private] |
Definition at line 98 of file DTConfigDBProducer.h.
Referenced by configFromCfg(), DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::flagDBTSM [private] |
Definition at line 98 of file DTConfigDBProducer.h.
Referenced by configFromCfg(), DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::flagDBTSS [private] |
Definition at line 98 of file DTConfigDBProducer.h.
Referenced by configFromCfg(), DTConfigDBProducer(), and readDTCCBConfig().
int DTConfigDBProducer::m_debugBti [private] |
Definition at line 73 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_debugDB [private] |
Definition at line 72 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_debugLUTs [private] |
Definition at line 79 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_debugSC [private] |
Definition at line 78 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
int DTConfigDBProducer::m_debugTraco [private] |
Definition at line 74 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_debugTSP [private] |
Definition at line 75 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_debugTST [private] |
Definition at line 76 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_debugTU [private] |
Definition at line 77 of file DTConfigDBProducer.h.
Referenced by DTConfigDBProducer(), and readDTCCBConfig().
DTConfigManager* DTConfigDBProducer::m_manager [private] |
Definition at line 69 of file DTConfigDBProducer.h.
Referenced by configFromCfg(), DTConfigDBProducer(), produce(), and readDTCCBConfig().
edm::ParameterSet DTConfigDBProducer::m_ps [private] |
Definition at line 68 of file DTConfigDBProducer.h.
Referenced by configFromCfg(), DTConfigDBProducer(), and readDTCCBConfig().
bool DTConfigDBProducer::m_TracoLutsFromDB [private] |
Definition at line 82 of file DTConfigDBProducer.h.
bool DTConfigDBProducer::m_UseBtiAcceptParam [private] |
Definition at line 83 of file DTConfigDBProducer.h.