CMS 3D CMS Logo

Classes | Functions
tier0 Namespace Reference

Classes

class  ResponseError
 
class  Tier0Error
 
class  Tier0Handler
 

Functions

def _raise_http_error (curl, response, proxy, timeout)
 
def test (url)
 
def unique (seq, keepstr=True)
 

Function Documentation

def tier0._raise_http_error (   curl,
  response,
  proxy,
  timeout 
)
private

Definition at line 63 of file tier0.py.

63 def _raise_http_error( curl, response, proxy, timeout ):
64  raise ResponseError( curl, response, proxy, timeout )
65 
def _raise_http_error(curl, response, proxy, timeout)
Definition: tier0.py:63
def tier0.test (   url)

Definition at line 178 of file tier0.py.

References edm.print().

178 def test( url ):
179  t0 = Tier0Handler( url, 1, 1, 1, None, debug=False)
180 
181  print(' fcsr = %s (%s)' % (t0.getFirstSafeRun(), type(t0.getFirstSafeRun()) ))
182  print(' reco_config = %s' % t0.getGlobalTag('reco_config'))
183  print(' express_config = %s' % t0.getGlobalTag('express_config'))
184  print('\n')
185 
186 
S & print(S &os, JobReport::InputFile const &f)
Definition: JobReport.cc:66
def test(url)
Definition: tier0.py:178
def tier0.unique (   seq,
  keepstr = True 
)

Definition at line 25 of file tier0.py.

References electrons_cff.bool, GetRecoTauVFromDQM_MC_cff.next, and lumiQTWidget.t.

Referenced by BeamHaloNavigationSchool.addInward(), edm.addToMissingDictionariesException(), SiStripLatency.allLatencies(), SiStripLatency.allModes(), SiStripLatency.allUniqueLatencyAndModes(), RPCTwinMuxDigiToRaw.beginRun(), TrigObjTnPHistColl::FilterSelector.cleanTrigKeys(), EMTFSubsystemCollector.cluster_gem(), EMTFSubsystemCollector.cluster_rpc(), SiStripThreshold.compact(), TriggerRatesMonitor.dqmBeginRun(), CSCSegmentValidation.fillEfficiencyPlots(), FWGeoMaterialValidator.fillOptions(), FWDetailViewManager.findViewersFor(), PixelInactiveAreaFinder.getBadPixelDets(), FSQ::HandlerTemplate< TInputCandidateType, TOutputCandidateType, filter >.getBestCombination(), tier0.Tier0Handler.getGlobalTag(), ESElectronicsMapper.GetListofFEDs(), edm::IndexIntoFile::IndexIntoFileItrImpl.getLumisInRun(), SiStripFEDMonitorPlugin.getMajority(), TTUTrackingAlg.ghostBuster(), TTClusterAssociationMap< T >.isCombinatoric(), TTClusterAssociationMap< T >.isGenuine(), TTClusterAssociationMap< T >.isUnknown(), HGVHistoProducerAlgo.layerClusters_to_CaloParticles(), fireworks::OptionNode.options(), edm::MergeableRunProductMetadata.preWriteRun(), MagGeoBuilderFromDDD::volumeHandle.printUniqueNames(), TTUEmulator.processTtu(), TTStubAssociator< T >.produce(), TTClusterAssociator< T >.produce(), TTTrackAssociator< T >.produce(), ReducedRecHitCollectionProducer.produce(), EgammaIsoESDetIdCollectionProducer.produce(), HLTJetCollForElePlusJets< T >.produce(), EgammaIsoHcalDetIdCollectionProducer.produce(), InterestingDetIdCollectionProducer.produce(), InterestingDetIdFromSuperClusterProducer.produce(), pat::PATPhotonProducer.produce(), pat::PATElectronProducer.produce(), SiStripElectronAlgo.projectPhiBand(), SiStripPsuDetIdMap.RemoveDuplicateDetIDs(), SiStripDetVOffBuilder.removeDuplicates(), edm::eventsetup::EventSetupProvider.resetRecordPlusDependentRecords(), SiStripPsuDetIdMap.retrieveDcuDeviceAddresses(), emtf::Forest.saveSplitValues(), FWExpressionValidator.setType(), ClusterTPAssociation.sortAndUnique(), Phase2TrackerCabling.summaryDescription(), edm.throwMissingDictionariesException(), and ProvenanceDumper.work_().

25 def unique(seq, keepstr=True):
26  t = type(seq)
27  if t in (unicode, str):
28  t = (list, t('').join)[bool(keepstr)]
29  try:
30  remaining = set(seq)
31  seen = set()
32  return t(c for c in seq if (c in remaining and not remaining.remove(c)))
33  except TypeError: # hashing didn't work, see if seq is sortable
34  try:
35  from itertools import groupby
36  s = sorted(enumerate(seq),key=lambda i_v1:(i_v1[1],i_v1[0]))
37  return t(next(g) for k,g in groupby(s, lambda i_v: i_v[1]))
38  except: # not sortable, use brute force
39  seen = []
40  return t(c for c in seq if not (c in seen or seen.append(c)))
41 
def unique(seq, keepstr=True)
Definition: tier0.py:25