CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions | Variables
FrontierCondition_GT_autoExpress_cfi Namespace Reference

Classes

class  Tier0Error
 
class  Tier0Handler
 

Functions

def unique
 

Variables

 auto = False
 
 proxyurl = None
 
tuple t0 = Tier0Handler( tier0Url, 5, 5, 5, proxyurl, False )
 
string tier0Url = 'https://cmsweb.cern.ch/t0wmadatasvc/prod/'
 

Function Documentation

def FrontierCondition_GT_autoExpress_cfi.unique (   seq,
  keepstr = True 
)

Definition at line 36 of file FrontierCondition_GT_autoExpress_cfi.py.

References GetRecoTauVFromDQM_MC_cff.next, and submitPVValidationJobs.t.

Referenced by FrontierCondition_GT_autoExpress_cfi.Tier0Handler.getGlobalTag().

36 
37 def unique(seq, keepstr=True):
38  t = type(seq)
39  if t in (unicode, str):
40  t = (list, t('').join)[bool(keepstr)]
41  try:
42  remaining = set(seq)
43  seen = set()
44  return t(c for c in seq if (c in remaining and not remaining.remove(c)))
45  except TypeError: # hashing didn't work, see if seq is sortable
46  try:
47  from itertools import groupby
48  s = sorted(enumerate(seq),key=lambda i_v1:(i_v1[1],i_v1[0]))
49  return t(next(g) for k,g in groupby(s, lambda i_v: i_v[1]))
50  except: # not sortable, use brute force
51  seen = []
52  return t(c for c in seq if not (c in seen or seen.append(c)))

Variable Documentation

FrontierCondition_GT_autoExpress_cfi.auto = False

Definition at line 16 of file FrontierCondition_GT_autoExpress_cfi.py.

list FrontierCondition_GT_autoExpress_cfi.proxyurl = None

Definition at line 146 of file FrontierCondition_GT_autoExpress_cfi.py.

tuple FrontierCondition_GT_autoExpress_cfi.t0 = Tier0Handler( tier0Url, 5, 5, 5, proxyurl, False )

Definition at line 149 of file FrontierCondition_GT_autoExpress_cfi.py.

Referenced by SonicAcquirer< TritonClient, edm::stream::EDProducer< edm::ExternalWork, Capabilities...> >.acquire(), TrackDetectorAssociator.addTAMuonSegmentMatch(), DTTPAnalyzer.analyze(), ESTimingTask.analyze(), DTT0CalibrationRMS.analyze(), DTTPDeadWriter.analyze(), SonicOneEDAnalyzer< TritonClient, Capabilities...>.analyze(), DTT0Calibration.analyze(), DiMuonVertexValidation.analyze(), DTDigiTask.analyze(), CTPPSDiamondRecHitProducerAlgorithm.build(), TrackExtenderWithMTDT< TrackCollection >.buildTrack(), reco::ForwardProton.calculateT(), riemannFit.circleFit(), CSCStripElectronicsSim.createDigi(), ChargeDividerFP420.DeconvolutionShape(), DTTTrigSyncFromDB.emulatorOffset(), DTT0CalibrationRMS.endJob(), DTT0Calibration.endJob(), ESRecHitAnalyticAlgo.EvalAmplitude(), ESRecHitSimAlgo.evalAmplitude(), RooCBExGaussShape.evaluate(), SonicEDFilter< TritonClient, edm::GlobalCache< G >, Capabilities...>.filter(), RPCNoise.filter(), MPQualityEnhancerFilter.filterUnique(), CSCFindPeakTime.fivePoleFitTime(), gen::Hydjet2Hadronizer.generatePartonsAndHadronize(), DTT0Handler.getNewObjects(), hTMaxCell.GetT0Factor(), trklet::VarBase.kstring(), RPCIntegrator.makeRPCOnlySegments(), DTTTrigSyncT0Only.offset(), DTTTrigSyncFromDB.offset(), ESRecHitSimAlgo.oldEvalAmplitude(), ESRecHitSimAlgo.oldreconstruct(), ChargeDividerFP420.PeakShape(), sonic_utils.printDebugTime(), CTPPSDirectProtonSimulation.processProton(), SonicEDProducer< TritonClient, edm::GlobalCache< G >, Capabilities...>.produce(), HcalTimeSlewEP.produce(), TOFPIDProducer.produce(), pat::PATPackedCandidateProducer.produce(), MuonSimHitProducer.produce(), EcalUncalibRecHitRecAnalFitAlgo< EBDataFrame >.pulseShapeFunction(), CastorSimpleRecAlgoImpl.reco(), HcalSimpleRecAlgoImpl.reco(), HcalQLPlotAnalAlgos.recoCalib(), ESRecHitAnalyticAlgo.reconstruct(), ESRecHitSimAlgo.reconstruct(), ESRecHitFitAlgo.reconstruct(), HcalSimpleRecAlgo.reconstruct(), HcalSimpleRecAlgo.reconstructQIE10(), regressionTest_first(), QIE8Simulator.run(), BeamFitter.setRefTime(), PVFitter.setRefTime(), ME.timeDiff(), TransverseImpactPointExtrapolator.tipSurface(), EcalSimHitsValidProducer.update(), MahiFit.updatePulseShape(), cond::service::OnlineDBOutputService.writeIOVForNextLumisection(), and HcalPulseShapes.Y11206().

string FrontierCondition_GT_autoExpress_cfi.tier0Url = 'https://cmsweb.cern.ch/t0wmadatasvc/prod/'

Definition at line 27 of file FrontierCondition_GT_autoExpress_cfi.py.