CMS 3D CMS Logo

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

#include <SiteLocalConfigService.h>

Inheritance diagram for edm::service::SiteLocalConfigService:
edm::SiteLocalConfig

Public Member Functions

std::string const dataCatalog (void) const
 
unsigned int debugLevel () const
 
std::string const fallbackDataCatalog (void) const
 
std::string const lookupCalibConnect (std::string const &input) const
 
std::string const rfioType (void) const
 
 SiteLocalConfigService (ParameterSet const &pset)
 
std::string const * sourceCacheHint () const
 
double const * sourceCacheMinFree () const
 
std::string const * sourceCacheTempDir () const
 
std::vector< std::string > const * sourceNativeProtocols () const
 
std::string const * sourceReadHint () const
 
unsigned int const * sourceTimeout () const
 
unsigned int const * sourceTTreeCacheSize () const
 
- Public Member Functions inherited from edm::SiteLocalConfig
 SiteLocalConfig ()
 
virtual ~SiteLocalConfig ()
 

Static Public Member Functions

static void fillDescriptions (ConfigurationDescriptions &descriptions)
 

Private Member Functions

std::string const frontierConnect (std::string const &servlet) const
 
void parse (std::string const &url)
 

Private Attributes

std::string m_cacheHint
 
std::string const * m_cacheHintPtr
 
double m_cacheMinFree
 
double const * m_cacheMinFreePtr
 
std::string m_cacheTempDir
 
std::string const * m_cacheTempDirPtr
 
bool m_connected
 
std::string m_dataCatalog
 
unsigned int m_debugLevel
 
std::string m_fallbackDataCatalog
 
std::string m_frontierConnect
 
std::vector< std::string > m_nativeProtocols
 
std::vector< std::string > const * m_nativeProtocolsPtr
 
std::string m_readHint
 
std::string const * m_readHintPtr
 
std::string m_rfioType
 
unsigned int m_timeout
 
unsigned int const * m_timeoutPtr
 
unsigned int m_ttreeCacheSize
 
unsigned int const * m_ttreeCacheSizePtr
 
std::string m_url
 

Detailed Description

Definition at line 23 of file SiteLocalConfigService.h.

Constructor & Destructor Documentation

edm::service::SiteLocalConfigService::SiteLocalConfigService ( ParameterSet const &  pset)
explicit

Definition at line 97 of file SiteLocalConfigService.cc.

References edm::ParameterSet::exists(), edm::ParameterSet::getUntrackedParameter(), m_cacheHint, m_cacheHintPtr, m_cacheMinFree, m_cacheMinFreePtr, m_cacheTempDir, m_cacheTempDirPtr, m_debugLevel, m_nativeProtocols, m_nativeProtocolsPtr, m_readHint, m_readHintPtr, m_timeout, m_timeoutPtr, m_ttreeCacheSize, m_ttreeCacheSizePtr, m_url, parse(), and tmp.

97  :
98  m_url("/SITECONF/local/JobConfig/site-local-config.xml"),
99  m_dataCatalog(),
102  m_rfioType("castor"),
103  m_connected(false),
104  m_cacheTempDir(),
106  m_cacheMinFree(),
108  m_cacheHint(),
109  m_cacheHintPtr(0),
110  m_readHint(),
111  m_readHintPtr(0),
112  m_ttreeCacheSize(0U),
114  m_timeout(0U),
115  m_timeoutPtr(0),
116  m_debugLevel(0U),
119 
120  char* tmp = getenv("CMS_PATH");
121 
122  if (tmp) {
123  m_url = tmp + m_url;
124  }
125 
126  this->parse(m_url);
127 
128  //apply overrides
129  overrideFromPSet("overrideSourceCacheTempDir", pset, m_cacheTempDir, m_cacheTempDirPtr);
130  overrideFromPSet("overrideSourceCacheMinFree", pset, m_cacheMinFree, m_cacheMinFreePtr);
131  overrideFromPSet("overrideSourceCacheHintDir", pset, m_cacheHint, m_cacheHintPtr);
132  overrideFromPSet("overrideSourceReadHint", pset, m_readHint, m_readHintPtr);
133  overrideFromPSet("overrideSourceNativeProtocols", pset, m_nativeProtocols, m_nativeProtocolsPtr);
134  overrideFromPSet("overrideSourceTTreeCacheSize", pset, m_ttreeCacheSize, m_ttreeCacheSizePtr);
135  overrideFromPSet("overrideSourceTimeout", pset, m_timeout, m_timeoutPtr);
136 
137  if(pset.exists("debugLevel")) {
138  m_debugLevel = pset.getUntrackedParameter<unsigned int>("debugLevel");
139  }
140 
141  }
std::vector< std::string > const * m_nativeProtocolsPtr
std::vector< std::string > m_nativeProtocols
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100

Member Function Documentation

std::string const edm::service::SiteLocalConfigService::dataCatalog ( void  ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 144 of file SiteLocalConfigService.cc.

References edm::hlt::Exception, m_connected, m_dataCatalog, and m_url.

144  {
145  if (!m_connected) {
146  //throw cms::Exception("Incomplete configuration")
147  // << "Valid site-local-config not found at " << m_url;
148  // Return PoolFileCatalog.xml for now
149  return "file:PoolFileCatalog.xml";
150  }
151 
152  if (m_dataCatalog == "") {
153  throw cms::Exception("Incomplete configuration")
154  << "Did not find catalog in event-data section in " << m_url;
155  }
156 
157  return m_dataCatalog;
158  }
unsigned int edm::service::SiteLocalConfigService::debugLevel ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 279 of file SiteLocalConfigService.cc.

References m_debugLevel.

279  {
280  return m_debugLevel;
281  }
std::string const edm::service::SiteLocalConfigService::fallbackDataCatalog ( void  ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 161 of file SiteLocalConfigService.cc.

References m_connected, and m_fallbackDataCatalog.

161  {
162  if (!m_connected) {
163  //throw cms::Exception("Incomplete configuration")
164  // << "Valid site-local-config not found at " << m_url;
165  // Return PoolFileCatalog.xml for now
166  return "file:PoolFileCatalog.xml";
167  }
168 
169  // Note: Unlike the dataCatalog, the fallbackDataCatalog may be empty!
170  return m_fallbackDataCatalog;
171  }
void edm::service::SiteLocalConfigService::fillDescriptions ( ConfigurationDescriptions descriptions)
static

Definition at line 458 of file SiteLocalConfigService.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::addOptionalUntracked(), and edm::ParameterSetDescription::setComment().

458  {
460  desc.setComment("Service to translate logical file names to physical file names.");
461 
462  desc.addOptionalUntracked<std::string>("overrideSourceCacheTempDir");
463  desc.addOptionalUntracked<double>("overrideSourceCacheMinFree");
464  desc.addOptionalUntracked<std::string>("overrideSourceCacheHintDir");
465  desc.addOptionalUntracked<std::string>("overrideSourceReadHint");
466  desc.addOptionalUntracked<std::vector<std::string> >("overrideSourceNativeProtocols");
467  desc.addOptionalUntracked<unsigned int>("overrideSourceTTreeCacheSize");
468  desc.addOptionalUntracked<unsigned int>("overrideSourceTimeout");
469  desc.addOptionalUntracked<unsigned int>("debugLevel");
470 
471  descriptions.add("SiteLocalConfigService", desc);
472  }
std::string const edm::service::SiteLocalConfigService::frontierConnect ( std::string const &  servlet) const
private

Definition at line 174 of file SiteLocalConfigService.cc.

References edm::hlt::Exception, m_connected, m_frontierConnect, and m_url.

Referenced by lookupCalibConnect(), and parse().

174  {
175  if (!m_connected) {
176  throw cms::Exception("Incomplete configuration")
177  << "Valid site-local-config not found at " << m_url;
178  }
179 
180  if (m_frontierConnect == "") {
181  throw cms::Exception("Incomplete configuration")
182  << "Did not find frontier-connect in calib-data section in " << m_url;
183  }
184 
185  if (servlet == "") {
186  return m_frontierConnect;
187  }
188 
189  // Replace the last component of every "serverurl=" piece (up to the
190  // next close-paren) with the servlet
191  std::string::size_type nextparen = 0;
192  std::string::size_type serverurl, lastslash;
193  std::string complexstr = "";
194  while ((serverurl = m_frontierConnect.find("(serverurl=", nextparen)) != std::string::npos) {
195  complexstr.append(m_frontierConnect, nextparen, serverurl - nextparen);
196  nextparen = m_frontierConnect.find(')', serverurl);
197  lastslash = m_frontierConnect.rfind('/', nextparen);
198  complexstr.append(m_frontierConnect, serverurl, lastslash - serverurl + 1);
199  complexstr.append(servlet);
200  }
201  complexstr.append(m_frontierConnect, nextparen, m_frontierConnect.length()-nextparen);
202 
203  return complexstr;
204  }
uint16_t size_type
std::string const edm::service::SiteLocalConfigService::lookupCalibConnect ( std::string const &  input) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 207 of file SiteLocalConfigService.cc.

References frontierConnect(), and LaserDQM_cfg::input.

207  {
208  static std::string const proto = "frontier://";
209 
210  if (input.substr(0,proto.length()) == proto) {
211  // Replace the part after the frontier:// and before either an open-
212  // parentheses (which indicates user-supplied options) or the last
213  // slash (which indicates start of the schema) with the complex
214  // parenthesized string returned from frontierConnect() (which
215  // contains all the information needed to connect to frontier),
216  // if that part is a simple servlet name (non-empty and not
217  // containing special characters)
218  // Example connect strings where servlet is replaced:
219  // frontier://cms_conditions_data/CMS_COND_ECAL
220  // frontier://FrontierInt/CMS_COND_ECAL
221  // frontier://FrontierInt(retrieve-ziplevel=0)/CMS_COND_ECAL
222  // Example connect strings left untouched:
223  // frontier://cmsfrontier.cern.ch:8000/FrontierInt/CMS_COND_ECAL
224  // frontier://(serverurl=cmsfrontier.cern.ch:8000/FrontierInt)/CMS_COND_ECAL
225  std::string::size_type startservlet = proto.length();
226  // if user supplied extra parenthesized options, stop servlet there
227  std::string::size_type endservlet = input.find("(", startservlet);
228  if (endservlet == std::string::npos) {
229  endservlet = input.rfind('/', input.length());
230  }
231  std::string servlet = input.substr(startservlet, endservlet - startservlet);
232  if ((servlet != "") && (servlet.find_first_of(":/)[]") == std::string::npos)) {
233  if (servlet == "cms_conditions_data") {
234  // use the default servlet from site-local-config.xml
235  servlet = "";
236  }
237  return proto + frontierConnect(servlet) + input.substr(endservlet);
238  }
239  }
240  return input;
241  }
uint16_t size_type
std::string const frontierConnect(std::string const &servlet) const
void edm::service::SiteLocalConfigService::parse ( std::string const &  url)
private

Definition at line 289 of file SiteLocalConfigService.cc.

References _toDOMS(), _toString(), validate_alignment_devdb10_cfg::catalog, asciidump::doc, alignCSCRings::e, frontierConnect(), i, m_cacheHint, m_cacheHintPtr, m_cacheMinFree, m_cacheMinFreePtr, m_cacheTempDir, m_cacheTempDirPtr, m_connected, m_dataCatalog, m_fallbackDataCatalog, m_frontierConnect, m_nativeProtocols, m_nativeProtocolsPtr, m_readHint, m_readHintPtr, m_rfioType, m_timeout, m_timeoutPtr, m_ttreeCacheSize, m_ttreeCacheSizePtr, and geometryXMLtoCSV::parser.

Referenced by SiteLocalConfigService().

289  {
290  XMLPlatformUtils::Initialize();
291  std::auto_ptr<XercesDOMParser> parser(new XercesDOMParser);
292  try {
293  parser->setValidationScheme(XercesDOMParser::Val_Auto);
294  parser->setDoNamespaces(false);
295 
296  parser->parse(url.c_str());
297  DOMDocument* doc = parser->getDocument();
298  if (!doc) {
299  return;
300  }
301 
302  // The Site Config has the following format
303  // <site-local-config>
304  // <site name="FNAL">
305  // <event-data>
306  // <catalog url="trivialcatalog_file:/x/y/z.xml"/>
307  // <rfiotype value="castor"/>
308  // </event-data>
309  // <calib-data>
310  // <catalog url="trivialcatalog_file:/x/y/z.xml"/>
311  // <frontier-connect>
312  // ... frontier-interpreted server/proxy xml ...
313  // </frontier-connect>
314  // </calib-data>
315  // <source-config>
316  // <cache-temp-dir name="/a/b/c"/>
317  // <cache-hint value="..."/>
318  // <read-hint value="..."/>
319  // <ttree-cache-size value="0"/>
320  // <native-protocols>
321  // <protocol prefix="dcache"/>
322  // <protocol prefix="file"/>
323  // </native-protocols>
324  // </source-config>
325  // </site>
326  // </site-local-config>
327 
328  // FIXME: should probably use the parser for validating the XML.
329 
330  DOMNodeList *sites = doc->getElementsByTagName(_toDOMS("site"));
331  unsigned int numSites = sites->getLength();
332  for (unsigned int i = 0; i < numSites; ++i) {
333  DOMElement *site = static_cast<DOMElement *>(sites->item(i));
334 
335  // Parsing of the event data section
336  {
337  DOMNodeList *eventDataList = site->getElementsByTagName(_toDOMS("event-data"));
338  if (eventDataList->getLength() > 0) {
339  DOMElement *eventData = static_cast<DOMElement *>(eventDataList->item(0));
340 
341  DOMNodeList *catalogs = eventData->getElementsByTagName(_toDOMS("catalog"));
342 
343  if (catalogs->getLength() > 0) {
344  DOMElement * catalog = static_cast<DOMElement *>(catalogs->item(0));
345  m_dataCatalog = _toString(catalog->getAttribute(_toDOMS("url")));
346  }
347 
348  if (catalogs->getLength() > 1) {
349  DOMElement * catalog = static_cast<DOMElement *>(catalogs->item(1));
350  m_fallbackDataCatalog = _toString(catalog->getAttribute(_toDOMS("url")));
351  }
352 
353  DOMNodeList* rfiotypes = eventData->getElementsByTagName(_toDOMS("rfiotype"));
354 
355  if (rfiotypes->getLength() > 0) {
356  DOMElement* rfiotype = static_cast<DOMElement *>(rfiotypes->item(0));
357  m_rfioType = _toString(rfiotype->getAttribute(_toDOMS("value")));
358  }
359  }
360  }
361 
362  // Parsing of the calib-data section
363  {
364  DOMNodeList *calibDataList = site->getElementsByTagName(_toDOMS("calib-data"));
365 
366  if (calibDataList->getLength() > 0) {
367  DOMElement *calibData = static_cast<DOMElement *>(calibDataList->item(0));
368  DOMNodeList *frontierConnectList = calibData->getElementsByTagName(_toDOMS("frontier-connect"));
369 
370  if (frontierConnectList->getLength() > 0) {
371  DOMElement *frontierConnect = static_cast<DOMElement *>(frontierConnectList->item(0));
372  m_frontierConnect = _toParenString(*frontierConnect);
373  }
374  }
375  }
376  // Parsing of the source config section
377  {
378  DOMNodeList *sourceConfigList = site->getElementsByTagName(_toDOMS("source-config"));
379 
380  if (sourceConfigList->getLength() > 0) {
381  DOMElement *sourceConfig = static_cast<DOMElement *>(sourceConfigList->item(0));
382  DOMNodeList *cacheTempDirList = sourceConfig->getElementsByTagName(_toDOMS("cache-temp-dir"));
383 
384  if (cacheTempDirList->getLength() > 0) {
385  DOMElement *cacheTempDir = static_cast<DOMElement *>(cacheTempDirList->item(0));
386  m_cacheTempDir = _toString(cacheTempDir->getAttribute(_toDOMS("name")));
388  }
389 
390  DOMNodeList *cacheMinFreeList = sourceConfig->getElementsByTagName(_toDOMS("cache-min-free"));
391 
392  if (cacheMinFreeList->getLength() > 0) {
393  DOMElement *cacheMinFree = static_cast<DOMElement *>(cacheMinFreeList->item(0));
394  m_cacheMinFree = _toDouble(cacheMinFree->getAttribute(_toDOMS("value")));
396  }
397 
398  DOMNodeList *cacheHintList = sourceConfig->getElementsByTagName(_toDOMS("cache-hint"));
399 
400  if (cacheHintList->getLength() > 0) {
401  DOMElement *cacheHint = static_cast<DOMElement *>(cacheHintList->item(0));
402  m_cacheHint = _toString(cacheHint->getAttribute(_toDOMS("value")));
404  }
405 
406  DOMNodeList *readHintList = sourceConfig->getElementsByTagName(_toDOMS("read-hint"));
407 
408  if (readHintList->getLength() > 0) {
409  DOMElement *readHint = static_cast<DOMElement *>(readHintList->item(0));
410  m_readHint = _toString(readHint->getAttribute(_toDOMS("value")));
412  }
413 
414  DOMNodeList *ttreeCacheSizeList = sourceConfig->getElementsByTagName(_toDOMS("ttree-cache-size"));
415 
416  if (ttreeCacheSizeList->getLength() > 0) {
417  DOMElement *ttreeCacheSize = static_cast<DOMElement *>(ttreeCacheSizeList->item(0));
418  m_ttreeCacheSize = _toUInt(ttreeCacheSize->getAttribute(_toDOMS("value")));
420  }
421 
422  DOMNodeList *timeoutList = sourceConfig->getElementsByTagName(_toDOMS("timeout-in-seconds"));
423 
424  if (timeoutList->getLength() > 0) {
425  DOMElement *timeout = static_cast<DOMElement *>(timeoutList->item(0));
426  m_timeout = _toUInt(timeout->getAttribute(_toDOMS("value")));
428  }
429 
430  DOMNodeList *nativeProtocolsList = sourceConfig->getElementsByTagName(_toDOMS("native-protocols"));
431 
432  if (nativeProtocolsList->getLength() > 0) {
433  DOMElement *nativeProtocol = static_cast<DOMElement *>(nativeProtocolsList->item(0));
434  DOMNodeList *childList = nativeProtocol->getChildNodes();
435 
436  XMLCh* prefixXMLCh = _toDOMS("prefix");
437  unsigned int numNodes = childList->getLength();
438  for (unsigned int i = 0; i < numNodes; ++i) {
439  DOMNode *childNode = childList->item(i);
440  if (childNode->getNodeType() != DOMNode::ELEMENT_NODE) {
441  continue;
442  }
443  DOMElement *child = static_cast<DOMElement *>(childNode);
444  m_nativeProtocols.push_back(_toString(child->getAttribute(prefixXMLCh)));
445  }
447  }
448  }
449  }
450  }
451  m_connected = true;
452  }
453  catch (xercesc::DOMException const& e) {
454  }
455  }
int i
Definition: DBlmapReader.cc:9
std::string _toString(const XMLCh *toTranscode)
std::vector< std::string > const * m_nativeProtocolsPtr
tuple doc
Definition: asciidump.py:381
std::vector< std::string > m_nativeProtocols
XMLCh * _toDOMS(std::string temp)
std::string const frontierConnect(std::string const &servlet) const
std::string const edm::service::SiteLocalConfigService::rfioType ( void  ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 244 of file SiteLocalConfigService.cc.

References m_rfioType.

244  {
245  return m_rfioType;
246  }
std::string const * edm::service::SiteLocalConfigService::sourceCacheHint ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 259 of file SiteLocalConfigService.cc.

References m_cacheHintPtr.

259  {
260  return m_cacheHintPtr;
261  }
double const * edm::service::SiteLocalConfigService::sourceCacheMinFree ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 254 of file SiteLocalConfigService.cc.

References m_cacheMinFreePtr.

254  {
255  return m_cacheMinFreePtr;
256  }
std::string const * edm::service::SiteLocalConfigService::sourceCacheTempDir ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 249 of file SiteLocalConfigService.cc.

References m_cacheTempDirPtr.

249  {
250  return m_cacheTempDirPtr;
251  }
std::vector< std::string > const * edm::service::SiteLocalConfigService::sourceNativeProtocols ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 284 of file SiteLocalConfigService.cc.

References m_nativeProtocolsPtr.

284  {
285  return m_nativeProtocolsPtr;
286  }
std::vector< std::string > const * m_nativeProtocolsPtr
std::string const * edm::service::SiteLocalConfigService::sourceReadHint ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 264 of file SiteLocalConfigService.cc.

References m_readHintPtr.

264  {
265  return m_readHintPtr;
266  }
unsigned int const * edm::service::SiteLocalConfigService::sourceTimeout ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 274 of file SiteLocalConfigService.cc.

References m_timeoutPtr.

274  {
275  return m_timeoutPtr;
276  }
unsigned int const * edm::service::SiteLocalConfigService::sourceTTreeCacheSize ( ) const
virtual

Implements edm::SiteLocalConfig.

Definition at line 269 of file SiteLocalConfigService.cc.

References m_ttreeCacheSizePtr.

269  {
270  return m_ttreeCacheSizePtr;
271  }

Member Data Documentation

std::string edm::service::SiteLocalConfigService::m_cacheHint
private

Definition at line 59 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

std::string const* edm::service::SiteLocalConfigService::m_cacheHintPtr
private

Definition at line 60 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceCacheHint().

double edm::service::SiteLocalConfigService::m_cacheMinFree
private

Definition at line 57 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

double const* edm::service::SiteLocalConfigService::m_cacheMinFreePtr
private

Definition at line 58 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceCacheMinFree().

std::string edm::service::SiteLocalConfigService::m_cacheTempDir
private

Definition at line 55 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

std::string const* edm::service::SiteLocalConfigService::m_cacheTempDirPtr
private

Definition at line 56 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceCacheTempDir().

bool edm::service::SiteLocalConfigService::m_connected
private

Definition at line 54 of file SiteLocalConfigService.h.

Referenced by dataCatalog(), fallbackDataCatalog(), frontierConnect(), and parse().

std::string edm::service::SiteLocalConfigService::m_dataCatalog
private

Definition at line 50 of file SiteLocalConfigService.h.

Referenced by dataCatalog(), and parse().

unsigned int edm::service::SiteLocalConfigService::m_debugLevel
private

Definition at line 67 of file SiteLocalConfigService.h.

Referenced by debugLevel(), and SiteLocalConfigService().

std::string edm::service::SiteLocalConfigService::m_fallbackDataCatalog
private

Definition at line 51 of file SiteLocalConfigService.h.

Referenced by fallbackDataCatalog(), and parse().

std::string edm::service::SiteLocalConfigService::m_frontierConnect
private

Definition at line 52 of file SiteLocalConfigService.h.

Referenced by frontierConnect(), and parse().

std::vector<std::string> edm::service::SiteLocalConfigService::m_nativeProtocols
private

Definition at line 68 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

std::vector<std::string> const* edm::service::SiteLocalConfigService::m_nativeProtocolsPtr
private

Definition at line 69 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceNativeProtocols().

std::string edm::service::SiteLocalConfigService::m_readHint
private

Definition at line 61 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

std::string const* edm::service::SiteLocalConfigService::m_readHintPtr
private

Definition at line 62 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceReadHint().

std::string edm::service::SiteLocalConfigService::m_rfioType
private

Definition at line 53 of file SiteLocalConfigService.h.

Referenced by parse(), and rfioType().

unsigned int edm::service::SiteLocalConfigService::m_timeout
private

Definition at line 65 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

unsigned int const* edm::service::SiteLocalConfigService::m_timeoutPtr
private

Definition at line 66 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceTimeout().

unsigned int edm::service::SiteLocalConfigService::m_ttreeCacheSize
private

Definition at line 63 of file SiteLocalConfigService.h.

Referenced by parse(), and SiteLocalConfigService().

unsigned int const* edm::service::SiteLocalConfigService::m_ttreeCacheSizePtr
private

Definition at line 64 of file SiteLocalConfigService.h.

Referenced by parse(), SiteLocalConfigService(), and sourceTTreeCacheSize().

std::string edm::service::SiteLocalConfigService::m_url
private

Definition at line 49 of file SiteLocalConfigService.h.

Referenced by dataCatalog(), frontierConnect(), and SiteLocalConfigService().