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

◆ _raise_http_error()

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

Definition at line 62 of file tier0.py.

62 def _raise_http_error( curl, response, proxy, timeout ):
63  raise ResponseError( curl, response, proxy, timeout )
64 

◆ test()

def tier0.test (   url)

Definition at line 177 of file tier0.py.

177 def test( url ):
178  t0 = Tier0Handler( url, 1, 1, 1, None, debug=False)
179 
180  print(' fcsr = %s (%s)' % (t0.getFirstSafeRun(), type(t0.getFirstSafeRun()) ))
181  print(' reco_config = %s' % t0.getGlobalTag('reco_config'))
182  print(' express_config = %s' % t0.getGlobalTag('express_config'))
183  print('\n')
184 
185 

References print().

◆ unique()

def tier0.unique (   seq,
  keepstr = True 
)

Definition at line 24 of file tier0.py.

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

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

Referenced by BeamHaloNavigationSchool.addInward(), edm.addToMissingDictionariesException(), SiStripLatency.allLatencies(), SiStripLatency.allModes(), SiStripLatency.allUniqueLatencyAndModes(), RPCTwinMuxDigiToRaw.beginRun(), TrigObjTnPHistColl::FilterSelector.cleanTrigKeys(), EMTFSubsystemCollector.cluster_rpc(), SiStripThreshold.compact(), TriggerRatesMonitor.dqmBeginRun(), trklet::TripletEngine.execute(), EMTFSubsystemCollector.extractPrimitives(), 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(), HGCalTriggerNtupleHGCDigis.HGCalTriggerNtupleHGCDigis(), TTClusterAssociationMap< T >.isCombinatoric(), TTClusterAssociationMap< T >.isGenuine(), TTClusterAssociationMap< T >.isUnknown(), TracksterAssociatorByEnergyScoreImpl.makeConnections(), LayerClusterAssociatorByEnergyScoreImpl.makeConnections(), SimClusterAssociatorByEnergyScoreImpl.makeConnections(), ticl::PatternRecognitionbyCA< TILES >.makeTracksters(), HGVHistoProducerAlgo.multiClusters_to_CaloParticles(), fireworks::OptionNode.options(), edm::MergeableRunProductMetadata.preWriteRun(), magneticfield.printUniqueNames(), TTUEmulator.processTtu(), TTTrackAssociator< T >.produce(), TTClusterAssociator< T >.produce(), TTStubAssociator< T >.produce(), EgammaIsoESDetIdCollectionProducer.produce(), EgammaIsoHcalDetIdCollectionProducer.produce(), ReducedRecHitCollectionProducer.produce(), HLTJetCollForElePlusJets< T >.produce(), pat::PATElectronProducer.produce(), pat::PATPhotonProducer.produce(), InterestingDetIdCollectionProducer.produce(), InterestingDetIdFromSuperClusterProducer.produce(), SiStripPsuDetIdMap.RemoveDuplicateDetIDs(), SiStripDetVOffBuilder.removeDuplicates(), edm::eventsetup::EventSetupProvider.resetRecordPlusDependentRecords(), SiStripPsuDetIdMap.retrieveDcuDeviceAddresses(), emtf::Forest.saveSplitValues(), FWExpressionValidator.setType(), ClusterTPAssociation.sortAndUnique(), edm::eventsetup::DataProxyProvider::DataProxyContainer.sortEventSetupRecordKeys(), Phase2TrackerCabling.summaryDescription(), edm.throwMissingDictionariesException(), TritonService.TritonService(), and ProvenanceDumper.work_().

electrons_cff.bool
bool
Definition: electrons_cff.py:366
tier0._raise_http_error
def _raise_http_error(curl, response, proxy, timeout)
Definition: tier0.py:62
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:46
tier0.unique
def unique(seq, keepstr=True)
Definition: tier0.py:24
tier0.test
def test(url)
Definition: tier0.py:177
submitPVValidationJobs.t
string t
Definition: submitPVValidationJobs.py:644
GetRecoTauVFromDQM_MC_cff.next
next
Definition: GetRecoTauVFromDQM_MC_cff.py:31