CMS 3D CMS Logo

Functions | Variables
heppy_report Namespace Reference

Functions

def root2map (dir, ana, treename)
 

Variables

 args
 
 default
 
 description
 
 dest
 
 help
 
 jmap
 
 lumis
 
 oname
 
 options
 
 parser
 
 runs
 
 summary
 
 usage
 

Function Documentation

def heppy_report.root2map (   dir,
  ana,
  treename 
)

Definition at line 5 of file heppy_report.py.

References mps_setup.append, and list().

5 def root2map(dir,ana,treename):
6  import ROOT
7  tfile = ROOT.TFile.Open("%s/%s/%s.root"%(dir,ana,treename))
8  if not tfile:
9  print "Error: dir %s does not contain %s/%s.root" % (dir,ana,treename)
10  return None
11  tree = tfile.Get(treename)
12  if not tree:
13  print "Error: rootfile %s/%s/%s.root does not contain a TTree %s" % (dir,ana,treename,treename)
14  return None
15  jsonind = {}
16  for e in xrange(tree.GetEntries()):
17  tree.GetEntry(e)
18  run,lumi = tree.run, tree.lumi
19  if run not in jsonind:
20  jsonind[run] = [lumi]
21  else:
22  jsonind[run].append(lumi)
23  # remove duplicates
24  for run in jsonind:
25  jsonind[run] = list(set(jsonind[run]))
26 
27  nruns = len(jsonind)
28  nlumis = sum(len(v) for v in jsonind.itervalues())
29  jsonmap = {}
30  for r,lumis in jsonind.iteritems():
31  if len(lumis) == 0: continue # shouldn't happen
32  lumis.sort()
33  ranges = [ [ lumis[0], lumis[0] ] ]
34  for lumi in lumis[1:]:
35  if lumi == ranges[-1][1] + 1:
36  ranges[-1][1] = lumi
37  else:
38  ranges.append([lumi,lumi])
39  jsonmap[r] = ranges
40  return (jsonmap, nruns, nlumis)
41 
def root2map(dir, ana, treename)
Definition: heppy_report.py:5
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Variable Documentation

heppy_report.args

Definition at line 48 of file heppy_report.py.

heppy_report.default

Definition at line 45 of file heppy_report.py.

heppy_report.description
heppy_report.dest

Definition at line 45 of file heppy_report.py.

heppy_report.help

Definition at line 45 of file heppy_report.py.

heppy_report.jmap

Definition at line 56 of file heppy_report.py.

heppy_report.lumis
heppy_report.oname
heppy_report.options

Definition at line 48 of file heppy_report.py.

heppy_report.parser

Definition at line 43 of file heppy_report.py.

heppy_report.runs

Definition at line 56 of file heppy_report.py.

heppy_report.summary

Definition at line 53 of file heppy_report.py.

Referenced by FilterSelection.acceptMap(), popcon::PopConSourceHandler< CastorPedestals >.add(), edmtest::DQMSummaryEventSetupAnalyzer.analyze(), RawDataConverter.analyze(), edmtest::FillInfoESAnalyzer.analyze(), edmtest::RunInfoESAnalyzer.analyze(), edmtest::RunSummaryESAnalyzer.analyze(), SiStripCommissioningSource.analyze(), NoiseRates.analyze(), HcalNoiseRates.analyze(), FFTJetPileupAnalyzer.analyze(), TrackerDpgAnalysis.analyze(), MagneticFieldFilter.beginRun(), APVCyclePhaseProducerFromL1TS.beginRun(), sistrip::FEDBuffer.checkSummary(), sistrip::FEDBufferBase.checkSummary(), MEtoMEComparitor.compare(), HltDiff.compare(), FedTimingHistograms.createSummaryHisto(), DaqScopeModeHistograms.createSummaryHisto(), FedCablingHistograms.createSummaryHisto(), CommissioningHistograms.createSummaryHisto(), TrackerDpgAnalysis.delay(), FFTJetProducer.determinePileupDensityFromConfig(), FFTJetProducer.determinePileupDensityFromDB(), LA_Filler_Fitter.ensemble_summary(), VpspScanTask.fill(), FineDelayTask.fill(), LatencyTask.fill(), RPCChamberQuality.fillMonitorElements(), edm::SystemTimeKeeper.fillTriggerTimingReport(), SiStripCommissioningRunTypeFilter.filter(), CastorInvalidDataFilter.filter(), L1RCTProducer.getFedVectorFromOmds(), L1RCTProducer.getFedVectorFromRunInfo(), SummaryGenerator.histogram(), CommissioningHistograms.histogram(), HLTSummaryFilter.hltFilter(), main(), FilterSelection.print(), FilterSelection.printDetailledPrintoutHeader(), SiStripLorentzAngle.printSummary(), SiStripBackPlaneCorrection.printSummary(), SiStripPedestals.printSummary(), SiStripNoises.printSummary(), sistrip::RawToDigiModule.produce(), SiStripFineDelayHit.produce(), HBHENoiseFilterResultProducer.produce(), FFTJetPileupEstimator.produce(), L1RCTOmdsFedVectorProducer.produce(), reco::HcalNoiseInfoProducer.produce(), SiStripFineDelayHit.produceNoTracking(), L1TdeRCT.readFEDVector(), SiStripDQMHistoryHelper.sep(), sistrip::RawToDigiUnpacker.triggerFed(), sistrip::RawToDigiUnpacker.updateEventSummary(), sistrip::EnsembleCalibrationLA.write_ensembles_text(), SummaryOutputProducer.writeHistograms(), fftjetcms::AbsPileupCalculator.~AbsPileupCalculator(), and fftjetcms::EtaDependentPileup.~EtaDependentPileup().

heppy_report.usage

Definition at line 43 of file heppy_report.py.