Classes | |
class | ParametersObject |
==============temporarilly here======### More... | |
Functions | |
def | allfills (queryHandle, filtercrazy=True) |
def | allruns (schemaHandle, requireRunsummary=True, requireLumisummary=False, requireTrg=False, requireHlt=False) |
==============real api=====### More... | |
def | beamIntensityForRun (query, parameters, runnum) |
def | calculateEffective (trgtable, totalrecorded) |
def | calculateTotalRecorded (deadtable) |
def | calibratedDetailForRunLimitresult (query, parameters, runnum, algoname='OCC1', finecorrection=None) |
def | deliveredLumiForRange (dbsession, parameters, inputRange, finecorrections=None) |
def | deliveredLumiForRun (dbsession, parameters, runnum, finecorrections=None) |
def | dumpData (lumidata, filename) |
def | dumpOverview (delivered, recorded, hltpath='') |
def | dumpPerLSLumi (lumidata) |
def | dumpRecordedLumi (lumidata, hltpath='') |
def | filterDeadtable (inTable, lslist) |
def | flatten (obj) |
def | getDeadfractions (deadtable) |
def | hltAllpathByrun (queryHandle, runnum) |
def | hltBypathByrun (queryHandle, runnum, hltpath) |
def | hlttrgMappingByrun (queryHandle, runnum) |
def | lsBylsLumi (deadtable) |
def | lslengthsec (numorbit, numbx) |
def | lumidetailAllalgosByrun (queryHandle, runnum) |
def | lumidetailByrunByAlgo (queryHandle, runnum, algoname='OCC1') |
def | lumisumByrun (queryHandle, runnum, lumiversion, beamstatus=None, beamenergy=None, beamenergyfluctuation=0.09, finecorrections=None) |
def | lumisummaryByrun (queryHandle, runnum, lumiversion, beamstatus=None, beamenergy=None, beamenergyfluctuation=0.09, finecorrections=None) |
def | lumisummarytrgbitzeroByrun (queryHandle, runnum, lumiversion, beamstatus=None, beamenergy=None, beamenergyfluctuation=0.09, finecorrections=None) |
def | mergeXingLumi (triplet, xingLumiDict) |
def | printDeliveredLumi (lumidata, mode) |
def | printOverviewData (delivered, recorded, hltpath='') |
def | printPerLSLumi (lumidata, isVerbose=False) |
def | printRecordedLumi (lumidata, isVerbose=False, hltpath='') |
def | recordedLumiForRange (dbsession, parameters, inputRange, finecorrections=None) |
def | recordedLumiForRun (dbsession, parameters, runnum, lslist=None, finecorrections=None) |
def | runsByfillrange (queryHandle, minFill, maxFill) |
def | runsByTimerange (queryHandle, minTime, maxTime) |
def | runsummaryByrun (queryHandle, runnum) |
def | setupSession (connectString, siteconfpath, parameters, debug=False) |
def | splitlistToRangeString (inPut) |
def | trgAllbitsByrun (queryHandle, runnum) |
def | trgbitzeroByrun (queryHandle, runnum) |
def | trgBybitnameByrun (queryHandle, runnum, bitname) |
def | validation (queryHandle, run=None, cmsls=None) |
def | xingLuminosityForRun (dbsession, runnum, parameters, lumiXingDict={}, maxLumiSection=None, finecorrections=None) |
Variables | |
accessMode | |
allfills | |
allruns | |
connectstr | |
msg | |
q | |
requireHlt | |
requireLumisummary | |
requireTrg | |
schema | |
session | |
svc | |
True | |
select distinct fillnum from cmsrunsummary there are crazy fill numbers. we assume they are not valid runs
Definition at line 1044 of file lumiQueryAPI.py.
References allfills, nameDealer.cmsrunsummaryTableName(), data, createfilelist.int, and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.allruns | ( | schemaHandle, | |
requireRunsummary = True , |
|||
requireLumisummary = False , |
|||
requireTrg = False , |
|||
requireHlt = False |
|||
) |
==============real api=====###
find all runs in the DB. By default requires cmsrunsummary table contain the run. The condition can be loosed in situation where db loading failed on certain data portions.
Definition at line 926 of file lumiQueryAPI.py.
References allruns, nameDealer.cmsrunsummaryTableName(), CommonUtil.count_dups(), data, nameDealer.hltTableName(), nameDealer.lumisummaryTableName(), GetRecoTauVFromDQM_MC_cff.next, and nameDealer.trgTableName().
def lumiQueryAPI.beamIntensityForRun | ( | query, | |
parameters, | |||
runnum | |||
) |
select CMSBXINDEXBLOB,BEAMINTENSITYBLOB_1,BEAMINTENSITYBLOB_2 from LUMISUMMARY where runnum=146315 and LUMIVERSION='0001' output : result {startorbit: [(bxidx,beam1intensity,beam2intensity)]}
Definition at line 1472 of file lumiQueryAPI.py.
References mps_setup.append, data, createfilelist.int, GetRecoTauVFromDQM_MC_cff.next, and CommonUtil.unpackBlobtoArray().
def lumiQueryAPI.calculateEffective | ( | trgtable, | |
totalrecorded | |||
) |
input: trgtable{hltpath:[l1seed, hltprescale, l1prescale]}, totalrecorded (float) output:{hltpath, recorded}
Definition at line 448 of file lumiQueryAPI.py.
def lumiQueryAPI.calculateTotalRecorded | ( | deadtable | ) |
input: {lsnum:[deadtime, instlumi, bit_0, norbits,prescale]} output: recordedLumi
Definition at line 413 of file lumiQueryAPI.py.
def lumiQueryAPI.calibratedDetailForRunLimitresult | ( | query, | |
parameters, | |||
runnum, | |||
algoname = 'OCC1' , |
|||
finecorrection = None |
|||
) |
select s.cmslsnum,d.bxlumivalue,d.bxlumierror,d.bxlumiquality,d.algoname from LUMIDETAIL d,LUMISUMMARY s where s.runnum=133885 and d.algoname='OCC1' and s.lumisummary_id=d.lumisummary_id order by s.startorbit,s.cmslsnum result={(startorbit,cmslsnum):[(index,lumivalue,lumierr),]}
Definition at line 1539 of file lumiQueryAPI.py.
References data, SiStripPI.max, and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.deliveredLumiForRange | ( | dbsession, | |
parameters, | |||
inputRange, | |||
finecorrections = None |
|||
) |
Takes either single run as a string or dictionary of run ranges
Definition at line 85 of file lumiQueryAPI.py.
References createfilelist.int.
select sum (INSTLUMI), count (INSTLUMI) from lumisummary where runnum = 124025 and lumiversion = '0001'; select INSTLUMI,NUMORBIT from lumisummary where runnum = 124025 and lumiversion = '0001' query result unit E27cm^-2 (= 1 / mb) optional corrections=None/(constfactor,afterglowfactor,nonlinearfactor)
Definition at line 161 of file lumiQueryAPI.py.
References data, lslengthsec(), nameDealer.lumisummaryTableName(), and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.dumpData | ( | lumidata, | |
filename | |||
) |
input params: lumidata [{'fieldname':value}] filename csvname
Definition at line 404 of file lumiQueryAPI.py.
Referenced by CastorDbXml.dumpObject(), and HcalDbXml.dumpObject().
def lumiQueryAPI.dumpOverview | ( | delivered, | |
recorded, | |||
hltpath = '' |
|||
) |
Definition at line 754 of file lumiQueryAPI.py.
References xingLuminosityForRun().
def lumiQueryAPI.dumpPerLSLumi | ( | lumidata | ) |
Definition at line 517 of file lumiQueryAPI.py.
def lumiQueryAPI.dumpRecordedLumi | ( | lumidata, | |
hltpath = '' |
|||
) |
Definition at line 644 of file lumiQueryAPI.py.
def lumiQueryAPI.filterDeadtable | ( | inTable, | |
lslist | |||
) |
Definition at line 386 of file lumiQueryAPI.py.
def lumiQueryAPI.flatten | ( | obj | ) |
Given nested lists or tuples, returns a single flattened list
Definition at line 867 of file lumiQueryAPI.py.
def lumiQueryAPI.getDeadfractions | ( | deadtable | ) |
inputtable: {lsnum:[deadtime, instlumi, bit_0, norbits,bit_0_prescale]} output: {lsnum:deadfraction}
Definition at line 463 of file lumiQueryAPI.py.
References objects.autophobj.float.
def lumiQueryAPI.hltAllpathByrun | ( | queryHandle, | |
runnum | |||
) |
select cmslsnum,inputcount,acceptcount,prescale,pathname from hlt where runnum=:runnum this can be changed to blob query later output: {cmslsnum:{pathname:[inputcount,acceptcount,prescale]}}
Definition at line 1432 of file lumiQueryAPI.py.
References data, nameDealer.hltTableName(), createfilelist.int, and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.hltBypathByrun | ( | queryHandle, | |
runnum, | |||
hltpath | |||
) |
select cmslsnum,inputcount,acceptcount,prescale from hlt where runnum=:runnum and pathname=:pathname output: {cmslsnum:[inputcount,acceptcount,prescale]}
Definition at line 1399 of file lumiQueryAPI.py.
References data, nameDealer.hltTableName(), createfilelist.int, and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.hlttrgMappingByrun | ( | queryHandle, | |
runnum | |||
) |
select m.hltpathname,m.l1seed from cmsrunsummary r,trghltmap m where r.runnum=:runnum and m.hltkey=r.hltkey output: {hltpath:l1seed}
Definition at line 1681 of file lumiQueryAPI.py.
References nameDealer.cmsrunsummaryTableName(), data, createfilelist.int, GetRecoTauVFromDQM_MC_cff.next, and nameDealer.trghltMapTableName().
def lumiQueryAPI.lsBylsLumi | ( | deadtable | ) |
input: {lsnum:[deadtime, instlumi, bit_0, norbits,prescale...]} output: {lsnum:[instlumi, recordedlumi...]}
Definition at line 63 of file lumiQueryAPI.py.
References objects.autophobj.float.
def lumiQueryAPI.lslengthsec | ( | numorbit, | |
numbx | |||
) |
def lumiQueryAPI.lumidetailAllalgosByrun | ( | queryHandle, | |
runnum | |||
) |
select s.cmslsnum,d.bxlumivalue,d.bxlumierror,d.bxlumiquality,d.algoname,s.startorbit from LUMIDETAIL d,LUMISUMMARY s where s.runnum=:runnumber and s.lumisummary_id=d.lumisummary_id order by s.startorbit,d.algoname output: {algoname:{cmslsnum:[bxlumivalue,bxlumierror,bxlumiquality,startorbit]}}
Definition at line 1637 of file lumiQueryAPI.py.
References data, createfilelist.int, nameDealer.lumidetailTableName(), nameDealer.lumisummaryTableName(), and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.lumidetailByrunByAlgo | ( | queryHandle, | |
runnum, | |||
algoname = 'OCC1' |
|||
) |
select s.cmslsnum,d.bxlumivalue,d.bxlumierror,d.bxlumiquality,s.startorbit from LUMIDETAIL d,LUMISUMMARY s where s.runnum=:runnum and d.algoname=:algoname and s.lumisummary_id=d.lumisummary_id order by s.startorbit output: [[cmslsnum,bxlumivalue,bxlumierror,bxlumiquality,startorbit]] since the output is ordered by time, it has to be in seq list format
Definition at line 1599 of file lumiQueryAPI.py.
References data, createfilelist.int, nameDealer.lumidetailTableName(), nameDealer.lumisummaryTableName(), and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.lumisumByrun | ( | queryHandle, | |
runnum, | |||
lumiversion, | |||
beamstatus = None , |
|||
beamenergy = None , |
|||
beamenergyfluctuation = 0.09 , |
|||
finecorrections = None |
|||
) |
beamenergy unit : GeV beamenergyfluctuation : fraction allowed to fluctuate around beamenergy value select instlumi from lumisummary where runnum=:runnum and lumiversion=:lumiversion output: float sum(instlumi) Note: the output is the raw result, need to apply LS length in time(sec)
Definition at line 1163 of file lumiQueryAPI.py.
References data, objects.autophobj.float, createfilelist.int, nameDealer.lumisummaryTableName(), and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.lumisummaryByrun | ( | queryHandle, | |
runnum, | |||
lumiversion, | |||
beamstatus = None , |
|||
beamenergy = None , |
|||
beamenergyfluctuation = 0.09 , |
|||
finecorrections = None |
|||
) |
one can impose beamstatus, beamenergy selections at the SQL query level or process them later from the general result select cmslsnum,instlumi,numorbit,startorbit,beamstatus,beamenery from lumisummary where runnum=:runnum and lumiversion=:lumiversion order by startorbit; output: [[cmslsnum,instlumi,numorbit,startorbit,beamstatus,beamenergy,cmsalive]] Note: the non-cmsalive LS are included in the result
Definition at line 1104 of file lumiQueryAPI.py.
References data, objects.autophobj.float, createfilelist.int, nameDealer.lumisummaryTableName(), and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.lumisummarytrgbitzeroByrun | ( | queryHandle, | |
runnum, | |||
lumiversion, | |||
beamstatus = None , |
|||
beamenergy = None , |
|||
beamenergyfluctuation = 0.09 , |
|||
finecorrections = None |
|||
) |
select l.cmslsnum,l.instlumi,l.numorbit,l.startorbit,l.beamstatus,l.beamenery,t.trgcount,t.deadtime,t.bitname,t.prescale from trg t,lumisummary l where t.bitnum=:bitnum and l.runnum=:runnum and l.lumiversion=:lumiversion and l.runnum=t.runnum and t.cmslsnum=l.cmslsnum; Everything you ever need to know about bitzero and avg luminosity. Since we do not know if joint query is better of sperate, support both. output: {cmslsnum:[instlumi,numorbit,startorbit,beamstatus,beamenergy,bitzerocount,deadtime,bitname,prescale]} Note: only cmsalive LS are included in the result. Therefore, this function cannot be used for calculating delivered!
Definition at line 1245 of file lumiQueryAPI.py.
References data, objects.autophobj.float, createfilelist.int, nameDealer.lumisummaryTableName(), GetRecoTauVFromDQM_MC_cff.next, and nameDealer.trgTableName().
def lumiQueryAPI.mergeXingLumi | ( | triplet, | |
xingLumiDict | |||
) |
Given general xing information and a xingLumiDict, the xing luminosity information is merged with the general information
Definition at line 878 of file lumiQueryAPI.py.
References createfilelist.int.
def lumiQueryAPI.printDeliveredLumi | ( | lumidata, | |
mode | |||
) |
Definition at line 398 of file lumiQueryAPI.py.
def lumiQueryAPI.printOverviewData | ( | delivered, | |
recorded, | |||
hltpath = '' |
|||
) |
Definition at line 685 of file lumiQueryAPI.py.
References relativeConstraints.keys.
input lumidata [['runnumber', 'trgtable{}', 'deadtable{}']] deadtable {lsnum:[deadtime, instlumi, bit_0, norbits,prescale]}
Definition at line 478 of file lumiQueryAPI.py.
Definition at line 535 of file lumiQueryAPI.py.
Takes either single run as a string or dictionary of run ranges
Definition at line 102 of file lumiQueryAPI.py.
References createfilelist.int, mps_monitormerge.items, and recordedLumiForRun().
def lumiQueryAPI.recordedLumiForRun | ( | dbsession, | |
parameters, | |||
runnum, | |||
lslist = None , |
|||
finecorrections = None |
|||
) |
lslist = [] means take none in the db lslist = None means to take all in the db output: ['runnumber', 'trgtable{}', 'deadtable{}']
Definition at line 219 of file lumiQueryAPI.py.
References nameDealer.cmsrunsummaryTableName(), data, nameDealer.hltTableName(), mps_monitormerge.items, nameDealer.lumisummaryTableName(), GetRecoTauVFromDQM_MC_cff.next, nameDealer.trghltMapTableName(), and nameDealer.trgTableName().
Referenced by recordedLumiForRange().
def lumiQueryAPI.runsByfillrange | ( | queryHandle, | |
minFill, | |||
maxFill | |||
) |
find all runs in the fill range inclusive select runnum,fillnum from cmsrunsummary where fillnum>=:minFill and fillnum<=:maxFill output: fillDict={fillnum:[runlist]}
Definition at line 1707 of file lumiQueryAPI.py.
References mps_setup.append, nameDealer.cmsrunsummaryTableName(), data, createfilelist.int, and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.runsByTimerange | ( | queryHandle, | |
minTime, | |||
maxTime | |||
) |
find all runs in the time range inclusive the selected run must have started after minTime and finished by maxTime select runnum,to_char(startTime),to_char(stopTime) from cmsrunsummary where startTime>=timestamp(minTime) and stopTime<=timestamp(maxTime); input: minTime,maxTime in python obj datetime.datetime output: {runnum:[starttime,stoptime]} return in python obj datetime.datetime
Definition at line 1737 of file lumiQueryAPI.py.
References nameDealer.cmsrunsummaryTableName(), data, and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.runsummaryByrun | ( | queryHandle, | |
runnum | |||
) |
select fillnum,sequence,hltkey,to_char(starttime),to_char(stoptime) from cmsrunsummary where runnum=:runnum output: [fillnum,sequence,hltkey,starttime,stoptime]
Definition at line 1068 of file lumiQueryAPI.py.
References nameDealer.cmsrunsummaryTableName(), data, createfilelist.int, and GetRecoTauVFromDQM_MC_cff.next.
returns database session
Definition at line 890 of file lumiQueryAPI.py.
def lumiQueryAPI.splitlistToRangeString | ( | inPut | ) |
Definition at line 432 of file lumiQueryAPI.py.
def lumiQueryAPI.trgAllbitsByrun | ( | queryHandle, | |
runnum | |||
) |
all you ever want to know about trigger select cmslsnum,trgcount,deadtime,bitnum,bitname,prescale from trg where runnum=:runnum order by bitnum,cmslsnum this can be changed to blob query later output: {cmslsnum:{bitname:[bitnum,trgcount,deadtime,prescale]}}
Definition at line 1353 of file lumiQueryAPI.py.
References data, createfilelist.int, GetRecoTauVFromDQM_MC_cff.next, and nameDealer.trgTableName().
def lumiQueryAPI.trgbitzeroByrun | ( | queryHandle, | |
runnum | |||
) |
select cmslsnum,trgcount,deadtime,bitname,prescale from trg where runnum=:runnum and bitnum=0; output: {cmslsnum:[trgcount,deadtime,bitname,prescale]}
Definition at line 1209 of file lumiQueryAPI.py.
References data, createfilelist.int, GetRecoTauVFromDQM_MC_cff.next, and nameDealer.trgTableName().
def lumiQueryAPI.trgBybitnameByrun | ( | queryHandle, | |
runnum, | |||
bitname | |||
) |
select cmslsnum,trgcount,deadtime,bitnum,prescale from trg where runnum=:runnum and bitname=:bitname; output: {cmslsnum:[trgcount,deadtime,bitnum,prescale]}
Definition at line 1317 of file lumiQueryAPI.py.
References data, createfilelist.int, GetRecoTauVFromDQM_MC_cff.next, and nameDealer.trgTableName().
retrieve validation data per run or all input: run. if not run, retrive all; if cmslsnum selection list pesent, filter out unselected result output: {run:[[cmslsnum,status,comment]]}
Definition at line 999 of file lumiQueryAPI.py.
References mps_setup.append, data, nameDealer.lumivalidationTableName(), and GetRecoTauVFromDQM_MC_cff.next.
def lumiQueryAPI.xingLuminosityForRun | ( | dbsession, | |
runnum, | |||
parameters, | |||
lumiXingDict = {} , |
|||
maxLumiSection = None , |
|||
finecorrections = None |
|||
) |
Given a run number and a minimum xing luminosity value, returns a dictionary (keyed by (run, lumi section)) where the value is a list of tuples of (xingID, xingLum). - For all xing luminosities, simply set minLumValue to 0. - If you want one dictionary for several runs, pass it in to "lumiXingDict" select s.cmslsnum, d.bxlumivalue, d.bxlumierror, d.bxlumiquality, d.algoname from LUMIDETAIL d, LUMISUMMARY s where s.runnum = 133885 and d.algoname = 'OCC1' and s.lumisummary_id = d.lumisummary_id order by s.startorbit, s.cmslsnum
Definition at line 778 of file lumiQueryAPI.py.
References data, nameDealer.lumidetailTableName(), nameDealer.lumisummaryTableName(), and GetRecoTauVFromDQM_MC_cff.next.
Referenced by dumpOverview().
lumiQueryAPI.accessMode |
Definition at line 1780 of file lumiQueryAPI.py.
Referenced by cond::CredentialStore.openSession().
lumiQueryAPI.allfills |
Definition at line 1843 of file lumiQueryAPI.py.
Referenced by allfills().
lumiQueryAPI.allruns |
Definition at line 1785 of file lumiQueryAPI.py.
Referenced by allruns().
lumiQueryAPI.connectstr |
Definition at line 1779 of file lumiQueryAPI.py.
lumiQueryAPI.msg |
Definition at line 1774 of file lumiQueryAPI.py.
lumiQueryAPI.q |
Definition at line 1842 of file lumiQueryAPI.py.
Referenced by QIE10Task._process(), DigiTask._process(), ParticleLevelProducer.addGenJet(), JetAnaPythia< Jet >.analyze(), TrackParameterAnalyzer.analyze(), DisplayGeom.analyze(), PhotonValidator.analyze(), HLTScalers.analyze(), hcaldqm::utilities.aveTS_v10(), hcaldqm::utilities.aveTSDB(), AlignmentTrackSelector.basicCuts(), DQMStore.book_(), PhysicsTools::AtomicId.build(), HcalDigitizer.buildHBHEQIECells(), HcalDigitizer.buildHFQIECells(), reco::Candidate.Candidate(), HFPreRecHit.charge(), NamedCandCombinerBase.combine(), CandCombinerBase< OutputCollection, CandPtr >.combine(), AnalyticalCurvilinearJacobian.computeFullJacobian(), Conv4HitsReco.ConversionCandidate(), VVIObjDetails.cosint(), sistripvvi::VVIObjDetails.cosint(), TtFullLepKinSolver.cubic(), TwoBodyDecayModel.curvilinearToCartesianJacobian(), PhysicsTools::VarProcessor.deriv(), FWEveDigitSetScalableMarkerGL.DirectDraw(), phase1PixelTopology.divu52(), lhef.domToLines(), EEQuadrant(), ConfigurationDBHandler.endElement(), lhef::LHEReader::XMLHandler.endElement(), LMFSeqDat.fetchByRunNumber(), dqm::TrackAnalyzer.fillHistosForState(), PrimaryVertexValidation.fillTrackHistos(), edm::ParameterSet.fromString(), GammaFunctionGenerator.gammaFrac(), lumi::idDealer.generateNextIDForTable(), reco::GenParticle.GenParticle(), hi::GenPlane.getAngle(), QIE8Simulator.getCharge(), cond::persistency::IOV::Table.getGroups(), lumi::idDealer.getIDforTable(), cond::persistency::IOV::Table.getLastIov(), PVValHelper.getMedian(), cond::persistency::TAG::Table.getMetadata(), MonitorElement.getQReport(), cond::persistency::IOV::Table.getSize(), pftools::CaloEllipse.getTheta(), cond::persistency::PAYLOAD::Table.getType(), L1MuGMTSortRankUnit.getVeryLowQualityLevel(), gen::Herwig6Instance.give(), ConversionFastHelix.helixStateAtVertex(), FastHelix.helixStateAtVertex(), HLTDeDxFilter.hltFilter(), GflashTrajectory.initializeTrajectory(), SeedFromConsecutiveHitsStraightLineCreator.initialKinematic(), CSCUpgradeMotherboard.intersection(), JacobianCartesianToLocal.JacobianCartesianToLocal(), JacobianLocalToCartesian.JacobianLocalToCartesian(), reco::TrackProbabilityTagInfo.jetProbability(), TemplatedJetProbabilityComputer< Container, Base >.jetProbability(), TemplatedJetBProbabilityComputer< Container, Base >.jetProbability(), reco::LeafCandidate.LeafCandidate(), DatabasePDG.LoadParticles(), L1MuGMTLFMergeRankPtQLUT.LookupFunctionPacked(), L1MuGMTLFSortRankPtQLUT.LookupFunctionPacked(), L1MuGMTLFMergeRankEtaQLUT.LookupFunctionPacked(), L1MuGMTLFSortRankEtaQLUT.LookupFunctionPacked(), SteppingHelixPropagator.makeAtomStep(), match(), L1MuGMTMerger.merge_rank(), MergeRootfile(), NtpProducer< C >.NtpProducer(), edm::Guid.operator=(), edm::Guid.operator==(), HcalPacker.pack(), OniaPhotonConversionProducer.PackFlags(), reco::Particle.Particle(), trigger::TriggerObject.particle(), ParticlePropagator.ParticlePropagator(), RawParticle.PDGcharge(), HBHEChannelInfo.peakChargeTS(), CastorNominalCoderTemplate.process(), HcalNominalCoderTemplate.process(), CastorDigiMonitor.processEvent(), PseudoTopProducer.produce(), NtpProducer< C >.produce(), L3MuonCandidateProducerFromMuons.produce(), TtSemiEvtSolutionMaker.produce(), TtHadEvtSolutionMaker.produce(), TrackListMerger.produce(), L2MuonCandidateProducer.produce(), L3MuonCandidateProducer.produce(), OniaPhotonConversionProducer.produce(), FFTJetPileupProcessor.produce(), ME0MuonConverter.produce(), edm::LimitedTaskQueue.push(), edm::LimitedTaskQueue.pushAndPause(), edm::LimitedTaskQueue.pushAndWait(), Herwig6Hadronizer.pythiaStatusCode(), reco::Conversion.quality(), reco::TrackBase.quality(), GSUtilities.quantile(), SusyPostProcessor.QuantilePlots(), RealQuadEquation.RealQuadEquation(), HFPreRecAlgo.reconstruct(), HFFlexibleTimeCheck.reconstruct(), HcalCableMapper.record(), MultiHitGeneratorFromChi2.refit2Hits(), FWOverlapTableView.refreshTable3D(), edm::LimitedTaskQueue::Resumer.resume(), MultiTrackSelector.run(), QIE8Simulator.run(), L1MuDTEtaProcessor.runEtaTrackFinder(), L1MuBMEtaProcessor.runEtaTrackFinder(), CustomPDGParser.s_charge(), cond::persistency::GLOBAL_TAG::Table.select(), cond::persistency::TAG::Table.select(), cond::persistency::RUN_INFO::Table.select(), cond::persistency::GLOBAL_TAG_MAP::Table.select(), cond::persistency::PAYLOAD::Table.select(), cond::persistency::IOV::Table.select(), BPhysicsOniaDQM.selGlobalMuon(), MuScleFitMuonSelector.selGlobalMuon(), MuScleFit.selGlobalMuon(), RawParticle.setCharge(), ObjectValidator.setEBRecHitCollection(), ObjectValidator.setEcalChannelStatus(), ObjectValidator.setEcalSeverityLevelAlgo(), ObjectValidator.setEERecHitCollection(), ObjectValidator.setHcalChannelQuality(), ObjectValidator.setHcalSeverityLevelComputer(), AlgoMuon.setQ(), ME0TriggerDigi.setQuality(), CSCCorrelatedLCTDigi.setQuality(), pat::HardEventHypothesis.setQuality(), reco::Conversion.setQuality(), reco::TrackBase.setQuality(), HBHEChannelInfo.setSample(), GenEventInfoProduct.setScales(), VVIObjDetails.sincosint(), sistripvvi::VVIObjDetails.sincosint(), VVIObjDetails.sinint(), sistripvvi::VVIObjDetails.sinint(), HelixExtrapolatorToLine2Order.solve3rdOrder(), L1MuGMTSortRankUnit.sort_rank(), L1MuGMTLFMergeRankPtQLUT.SpecificLookup(), L1MuGMTLFSortRankPtQLUT.SpecificLookup(), L1MuGMTLFMergeRankEtaQLUT.SpecificLookup(), L1MuGMTLFSortRankEtaQLUT.SpecificLookup(), L1MuGMTLFMergeRankEtaQLUT.SpecificLookup_flag(), L1MuGMTLFSortRankEtaQLUT.SpecificLookup_rank_etaq(), L1MuGMTLFMergeRankEtaQLUT.SpecificLookup_rank_etaq(), L1MuGMTLFMergeRankPtQLUT.SpecificLookup_rank_ptq(), L1MuGMTLFSortRankPtQLUT.SpecificLookup_rank_ptq(), L1MuGMTLFSortRankEtaQLUT.SpecificLookup_vlq(), TauValidation.spinEffectsZH(), PhysicsTools.split(), ConversionFastHelix.straightLineStateAtVertex(), FastHelix.straightLineStateAtVertex(), L1MuGMTLFSortRankPtQLUT.TheLookupFunction(), L1MuGMTLFMergeRankEtaQLUT.TheLookupFunction(), L1TMuonBarrelKalmanAlgo.twosCompToBits(), reco::InverseCrosstalkMatrix.unfold(), RctRawToDigi.unpackCTP7(), L1MuonPixelTrackFitter.valInversePt(), SiStripClusterInfo.variance(), reco::VertexCompositeCandidate.VertexCompositeCandidate(), reco::VertexCompositePtrCandidate.VertexCompositePtrCandidate(), VVIObj.VVIObj(), sistripvvi::VVIObj.VVIObj(), VVIObjF.VVIObjF(), DCULVRVoltagesDat.writeArrayDB(), and cms::DDCMSDetElementCreator.~DDCMSDetElementCreator().
lumiQueryAPI.requireHlt |
Definition at line 1785 of file lumiQueryAPI.py.
lumiQueryAPI.requireLumisummary |
Definition at line 1785 of file lumiQueryAPI.py.
lumiQueryAPI.requireTrg |
Definition at line 1785 of file lumiQueryAPI.py.
lumiQueryAPI.schema |
Definition at line 1784 of file lumiQueryAPI.py.
lumiQueryAPI.session |
Definition at line 1780 of file lumiQueryAPI.py.
lumiQueryAPI.svc |
Definition at line 1778 of file lumiQueryAPI.py.
lumiQueryAPI.True |
Definition at line 1785 of file lumiQueryAPI.py.