CMS 3D CMS Logo

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

Functions

def makeJobBlock
 

Variables

string comma = ","
 
string commandline = " "
 
string commax = ","
 
tuple comment1RE = re.compile(r'^#.+$')
 
list commentLines = []
 
list copyargs = sys.argv[:]
 
int default = 0
 
string dest = "debug"
 
list eventsFiles = []
 
tuple evtPerJob = int(math.ceil(float(ntotal)/NBLOCKS))
 
tuple fileLineRE = re.compile(r'^.*\'(.*)\'.+# (\d*).*$')
 
tuple fin = open(INFILE, "r")
 
tuple fout = open(OUTFILE, mode="w")
 
string help = "debug verbosity level"
 
list INFILE = sys.argv[2]
 
list jobsBlocks = []
 
tuple lines = fin.readlines()
 
tuple match = comment1RE.match(line)
 
tuple NBLOCKS = int(sys.argv[1])
 
int ntotal = 0
 
list OUTFILE = sys.argv[3]
 
tuple parser = optparse.OptionParser(usage)
 To parse commandline args. More...
 
list prog = sys.argv[0]
 
 temp = eventsFiles
 
int tt = 0
 
string type = "int"
 
string usage = './%(prog)s NBLOCKS INFILE OUTFILE [options]\n'
 

Function Documentation

def groupFilesInBlocks.makeJobBlock (   mylist,
  evtn 
)

Definition at line 44 of file groupFilesInBlocks.py.

44 
45 def makeJobBlock(mylist, evtn):
46  n = mylist[0][0]
47  block = [mylist[0]]
48  choosen = [0]
49  while n<evtn:
50  #print "n,evtn=",n,evtn
51  # find the biggest unused #evt that would give n<evtn
52  for i in range(len(mylist)):
53  # get last not choosen i
54  last_i=len(mylist)-1
55  while last_i in choosen: last_i += -1
56  if i==last_i:
57  #print i,"last element reached"
58  n += mylist[i][0]
59  #print " new last append: ",i, mylist[i][0], n
60  block.append(mylist[i])
61  choosen.append(i)
62  break
63  if i in choosen:
64  #print i," in choosen, continue..."
65  continue
66  if n+mylist[i][0]<evtn:
67  n += mylist[i][0]
68  #print " new append: ",i, mylist[i][0], n
69  block.append(mylist[i])
70  choosen.append(i)
71  break
72  if len(choosen)==len(mylist):
73  #print " got everything"
74  break
75  # pick up unused elements
76  newlist = []
77  for i in range(len(mylist)):
78  if not i in choosen:
79  newlist.append(mylist[i])
80  print "done makeJobBlock n =",n," len =",len(block)
81  return block, newlist, n
82 
83 

Variable Documentation

string groupFilesInBlocks.comma = ","

Definition at line 173 of file groupFilesInBlocks.py.

string groupFilesInBlocks.commandline = " "

Definition at line 12 of file groupFilesInBlocks.py.

string groupFilesInBlocks.commax = ","

Definition at line 170 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.comment1RE = re.compile(r'^#.+$')

Definition at line 84 of file groupFilesInBlocks.py.

list groupFilesInBlocks.commentLines = []

Definition at line 99 of file groupFilesInBlocks.py.

list groupFilesInBlocks.copyargs = sys.argv[:]

Definition at line 6 of file groupFilesInBlocks.py.

int groupFilesInBlocks.default = 0

Definition at line 30 of file groupFilesInBlocks.py.

string groupFilesInBlocks.dest = "debug"

Definition at line 31 of file groupFilesInBlocks.py.

list groupFilesInBlocks.eventsFiles = []

Definition at line 97 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.evtPerJob = int(math.ceil(float(ntotal)/NBLOCKS))

Definition at line 132 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.fileLineRE = re.compile(r'^.*\'(.*)\'.+# (\d*).*$')

Definition at line 85 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.fin = open(INFILE, "r")

Definition at line 92 of file groupFilesInBlocks.py.

Referenced by addFile(), convertFile(), dumpFiles(), popcon::EcalLaser_weekly_Linearization_Check.getNewObjects(), ElectronEnergyCalibrator.init(), PhotonFix.initialiseGeometry(), MuonGeometryArrange.MuonGeometryArrange(), ALIFileIn.openNewFile(), RPCPatternsParser.parse(), CommandLine.parse_file(), pos::PixelFEDTestDAC.PixelFEDTestDAC(), CSCChamberTimeCorrectionsValues.prefill(), CSCChipSpeedCorrectionDBConditions.prefillDBChipSpeedCorrection(), CSCGasGainCorrectionDBConditions.prefillDBGasGainCorrection(), CSCGasCollisions.readCollisionTable(), DQMStore.readFilePB(), ErrorCorrelationMgr.readFromReportFile(), AsciiNeutronReader.readNextEvent(), SiPixelEDAClient.SiPixelEDAClient(), SiStripAnalyser.SiStripAnalyser(), TPNCor.TPNCor(), TrackerGeometryCompare.TrackerGeometryCompare(), and TrackingAnalyser.TrackingAnalyser().

tuple groupFilesInBlocks.fout = open(OUTFILE, mode="w")

Definition at line 160 of file groupFilesInBlocks.py.

Referenced by DTTrigGeom.dumpLUT(), DTConfigManager.dumpLUTParam(), RunManager.DumpMagneticField(), RunManagerMT.DumpMagneticField(), EcalTPGLinearizationConstXMLTranslator.dumpXML(), popcon::EcalSRPHandler.getNewObjects(), FittedEntriesManager.MakeHistos(), EcalTPGTowerStatusXMLTranslator.plot(), EcalDCSTowerStatusXMLTranslator.plot(), EcalDAQTowerStatusXMLTranslator.plot(), ZeeCalibration.printStatistics(), G4RegionReporter.ReportRegions(), TestHistoMgr.save(), and JME::JetResolutionObject.saveToFile().

string groupFilesInBlocks.help = "debug verbosity level"

Definition at line 28 of file groupFilesInBlocks.py.

list groupFilesInBlocks.INFILE = sys.argv[2]

Definition at line 39 of file groupFilesInBlocks.py.

list groupFilesInBlocks.jobsBlocks = []

Definition at line 139 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.lines = fin.readlines()

Definition at line 93 of file groupFilesInBlocks.py.

Referenced by HcalChannelIterator.addListFromLmapAscii(), FWMuonDetailView.addSceneInfo(), FWTrackResidualDetailView.build(), FWConversionProxyBuilder.buildViewType(), DTTFFEDSim.fillRawData(), ListGroups.overlayEtaReferences(), DTTFFEDReader.process(), ListGroups.produceAndSaveSummaryPlot(), gen::Pythia6Service.Pythia6Service(), LMap::impl.read(), HcalEmap.read_map(), EMap.read_map(), L1TTwinMuxRawToDigi.readline(), and L1GtVmeWriterCore.writeVME().

tuple groupFilesInBlocks.match = comment1RE.match(line)

Definition at line 105 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.NBLOCKS = int(sys.argv[1])

Definition at line 38 of file groupFilesInBlocks.py.

int groupFilesInBlocks.ntotal = 0

Definition at line 98 of file groupFilesInBlocks.py.

Referenced by cms::FastSimDataFilter.beginJob(), GenXSecAnalyzer.compute(), cms::FastSimDataFilter.endJob(), cms::FastSimDataFilter.filter(), lhef::LHERunInfo.statistics(), and lhef::LHERunInfo.xsec().

list groupFilesInBlocks.OUTFILE = sys.argv[3]

Definition at line 40 of file groupFilesInBlocks.py.

tuple groupFilesInBlocks.parser = optparse.OptionParser(usage)

To parse commandline args.

Definition at line 25 of file groupFilesInBlocks.py.

list groupFilesInBlocks.prog = sys.argv[0]

Definition at line 14 of file groupFilesInBlocks.py.

groupFilesInBlocks.temp = eventsFiles

Definition at line 140 of file groupFilesInBlocks.py.

Referenced by FWEventItemsManager.add(), addAreaInfoTo(), FWItemValueGetter.addEntry(), APVShotFinder.addShots(), FWGUIManager.addTo(), TagProbeFitter.addVariable(), ApvTimingAlgorithm.analyse(), SiPixelTrackResidualSource.analyze(), SiStripMonitorPedestals.analyze(), HLTHiggsSubAnalysis.analyze(), DiJetAnalyzer.analyze(), ConversionFinder.arbitrateConversionPartnersbyR(), L1RCTJetSummaryCard.asicCompare(), L1RCTJetSummaryCard.asicSort(), PFRecHitNavigatorBase.associateNeighbour(), PFRecHitCaloNavigatorWithTime< EEDetId, EcalEndcapTopology >.associateNeighbour(), edm::ThinnedAssociationsHelper.associationToBranches(), PFEGammaAlgo.attachPSClusters(), RecoTauDiscriminantCutMultiplexer.beginEvent(), PhysicsPerformanceDBWriterTFormula_fromfile_WPandPL.beginJob(), PhysicsPerformanceDBWriterFromFile_WPandPayload.beginJob(), PhysicsPerformanceDBWriterFromFile_WPandPayload_IOV.beginJob(), DQMSourceExample.beginJob(), SiPixelDQMRocLevelAnalyzer.beginJob(), SiStripCommissioningOfflineClient.beginRun(), L1GtVhdlWriterBitManager.bin2hex(), Blowfish_Decrypt(), Blowfish_Encrypt(), GEMHitsValidation.bookHistograms(), SiPixelRawDataErrorSource.bookMEs(), Basic2DGenericTopoClusterizer.buildClusters(), L1GtVhdlWriterBitManager.buildDeltaPhiMuon(), SiStripFedCablingBuilderFromDb.buildFecCablingFromDevices(), SiStripFedCabling.buildFedCabling(), DDG4Builder.BuildGeometry(), TrackerGeomBuilderFromGeometricDet.buildPixel(), RunRangeDependentPedeLabeler.buildRunRangeDependencyMap(), CSCSegAlgoST.buildSegments(), CSCSegAlgoTC.buildSegments(), CSCSegAlgoSK.buildSegments(), CSCSegAlgoDF.buildSegments(), TrackerGeomBuilderFromGeometricDet.buildSilicon(), CmsDetConstruction.buildSmallDetsforGlued(), CmsDetConstruction.buildSmallDetsforStack(), L1GctJetFinderBase.calcHfSums(), RazorVarProducer.CalcMR(), razor.CalcMR(), HLTRFilter.CalcMR(), SUSY_HLT_Razor.CalcMR(), razor.CalcMTR(), GraphPath< N, E >.calcPaths(), JetPlusTrackCorrector.calculateCorr(), CalibrationHistograms.CalibrationHistograms(), ME0SegAlgoMM.chainHits(), CSCSegAlgoST.chainHits(), HcalQie.charge(), SensitiveDetectorCatalog.className(), SensitiveDetectorCatalog.classNames(), TiXmlNode.Clear(), CSCSegAlgoPreClustering.clusterHits(), ME0SegAlgoMM.clusterHits(), CSCSegAlgoST.clusterHits(), HcalQie.code(), SiStripEventSummary.commissioningInfo(), edm::Event.commit_aux(), edm::hash_detail.compactForm_(), DCCTBEventBlock.compare(), edm::Hash< EntryDescriptionType >.compareUsing(), TIDLayer.components(), Phase2OTEndcapLayer.components(), RazorComputer.compute(), MuonGEMRecHitsHarvestor.ComputeEff(), MuonGEMDigisHarvestor.ComputeEff(), L1GctHardwareJetFinder.convertClustersToOutputJets(), edm::ParameterSetConverter.convertParameterSets(), edm::ParameterSet.copyForModify(), MuonMETAlgo.correctMETforMuon(), AttachSD.create(), edm::eventsetup.createDecoratorFrom(), TkAccumulatingSensitiveDetector.createHit(), DDI::Specific.createPartSelections(), TGeoMgrFromDdd.createShape(), TGeoFromDddService.createShape(), PhotonMVAEstimatorRun2Spring15NonTrig.createSingleReader(), PhotonMVAEstimatorRun2Phys14NonTrig.createSingleReader(), ElectronMVAEstimatorRun2Phys14NonTrig.createSingleReader(), ElectronMVAEstimatorRun2Spring15Trig.createSingleReader(), ElectronMVAEstimatorRun2Spring15NonTrig.createSingleReader(), DDTBH4Algo.ddname(), DDEcalAPDAlgo.ddname(), DDEcalBarrelAlgo.ddname(), DDEcalBarrelNewAlgo.ddname(), DDEcalEndcapAlgo.ddname(), edm.decode(), TT6ApvMask.defineNoisy(), DQMStore.deleteUnusedLumiHistograms(), CandidateBoostedDoubleSecondaryVertexComputer.discriminator(), EmDQMPostProcessor.dqmEndJob(), edm::RootFile.dropOnInput(), CocoaDaqRootEvent.DumpIt(), eigen_solve_submatrix(), ElectronMVAEstimator.ElectronMVAEstimator(), reco::PFCandidate.elementsInBlocks(), edm::EmptyESSource.EmptyESSource(), HOCalibAnalyzer.endJob(), edm::GeneratorFilter< HAD, DEC >.endLuminosityBlockProduce(), edm::HadronizerFilter< HAD, DEC >.endLuminosityBlockProduce(), edm.endpathsAreActive_(), GenXSecAnalyzer.endRun(), L1GctJetFinderBase.etComponentForJetFinder(), DCCTBEventBlock.eventErrorString(), edm::eventsetup.eventSetupGetImplementation(), DDPixFwdBlades.execute(), CalibrationSummaryFactory.extract(), NoiseSummaryFactory.extract(), PedestalsSummaryFactory.extract(), PedsFullNoiseSummaryFactory.extract(), PedsOnlySummaryFactory.extract(), CommissioningHistograms.extractHistograms(), EcalCondDBInterface.fetchFEDelaysForRun(), L1GctJetFinderBase.fetchProtoJetsFromNeighbour(), SummaryGeneratorControlView.fill(), SummaryGeneratorReadoutView.fill(), MaterialBudgetHcalHistos.fillBeginJob(), HLTPixelClusterShapeFilter.fillDescriptions(), L2MuonIsolationProducer.fillDescriptions(), HLTHcalSimpleRecHitFilter.fillDescriptions(), HLTHcalCalibTypeFilter.fillDescriptions(), HLTDTActivityFilter.fillDescriptions(), SiPixelActionExecutor.fillFEDErrorSummary(), MuonShowerInformationFiller.fillHitsByStation(), FWExpressionValidator.fillOptions(), edm.fillPathSummary(), SiPixelActionExecutor.fillSummary(), TrackerGeometry.fillTestMap(), ConversionFinder.findBestConversionMatch(), L1GctHardwareJetFinder.findFinalClusters(), L1GctHardwareJetFinder.findProtoClusters(), DivisiveVertexFinder.findVertexesAlt(), BSFitter.Fit_d0phi(), edm::hash_detail.fixup_(), edm::ParameterSet.fromString(), GammaLn(), DTRecoConditions.get(), edm::Event.get(), fwlite::Handle< Collection >.getByLabel(), SimG4HcalHitJetFinder.getClusters(), HcalLaserEventFilter.GetCMSSWVersion(), HcalQie.getCode(), ConversionFinder.getConversionInfo(), DDG4Builder.getDouble(), L1GlobalCaloTrigger.getEtHadCollection(), L1GlobalCaloTrigger.getEtMissCollection(), L1GlobalCaloTrigger.getEtSumCollection(), L1GlobalCaloTrigger.getHFBitCountsCollection(), L1GlobalCaloTrigger.getHFRingEtSumsCollection(), HBHEHitMapOrganizer.getHPDNeighbors(), L1GlobalCaloTrigger.getHtMissCollection(), MuonDDDNumbering.getInt(), DDG4Builder.getInt(), DCCEETCCBlock.getLength(), SensitiveDetector.getNames(), TkAccumulatingSensitiveDetector.getNames(), FastTimerSD.getNames(), BHMSD.getNames(), MuonSensitiveDetector.getNames(), BscSD.getNames(), FP420SD.getNames(), TouchableToHistory.getNavStory(), PltSD.getOrCreateTrackInformation(), Bcm1fSD.getOrCreateTrackInformation(), MuonSensitiveDetector.getOrCreateTrackInformation(), TkAccumulatingSensitiveDetector.getOrCreateTrackInformation(), PhysicsPerformancePayload.getRow(), ExtractStringFromDDD.getString(), DDG4SensitiveConverter.getString(), ApvAnalysisFactory.getStripNoise(), ApvAnalysisFactory.getStripPedestal(), ApvAnalysisFactory.getStripRawNoise(), L1GtVhdlTemplateFile.getSubstitutionParametersFromTemplate(), HcalDDDRecConstants.HcalCellTypes(), HCalSD.HCalSD(), pfEGHelpers::HeavyObjectCache.HeavyObjectCache(), goodseedhelpers::HeavyObjectCache.HeavyObjectCache(), L1GtVhdlWriterBitManager.hex2bin(), HGCalDigiValidation.HGCalDigiValidation(), HGCalRecHitValidation.HGCalRecHitValidation(), edm::RangeMap< int, std::vector< float >, edm::CopyPolicy< float > >.ids(), PFHFRecHitCreator.importRecHits(), GSFTrackImporter.importToBlock(), edm::IndexIntoFile::IndexIntoFileItr.IndexIntoFileItr(), dqmservices::TriggerSelector.init(), SiStripDetKey.initFromPath(), SiStripFecKey.initFromPath(), SiStripFedKey.initFromPath(), DDAngular.initialize(), PerformancePayloadFromBinnedTFormula.initialize(), PerformancePayloadFromTFormula.initialize(), L1GtVhdlTemplateFile.insert(), edm::eventsetup::EventSetupProvider.insert(), ApvAnalysisFactory.instantiateApvs(), reco::helper::VirtualJetProducerHelper.intersection(), CmsTrackerDetIdBuilder.iterate(), itoa(), HcalDQMDbInterface.itoa(), edm::eventsetup::DataProxyProvider.keyedProxies(), edm::es.l(), L1GtVhdlWriterCore.L1GtVhdlWriterCore(), HcalTestAnalysis.layerGrouping(), PFEGammaAlgo.linkRefinableObjectPrimaryGSFTrackToECAL(), PFEGammaAlgo.linkRefinableObjectPrimaryGSFTrackToHCAL(), LocalCacheFile.LocalCacheFile(), SensitiveDetectorCatalog.logicalNamesFromClassName(), HybridClusterAlgo.mainSearch(), AlignmentProducer.makeNonOverlappingRunRanges(), PCLTrackerAlProducer.makeNonOverlappingRunRanges(), L1GctHardwareJetFinder.makeProtoJet(), HFShower.makeSteps(), HDShower.makeSteps(), SignCaloSpecificAlgo.makeVectorOutOfCaloTowers(), jpt::Map.Map(), L1GtVhdlWriterBitManager.mirror(), L1CaloEcalScaleConfigOnlineProd.newObject(), SequentialCombinationGenerator< T >.next_combination(), GsiFTPStorageMaker.open(), HttpStorageMaker.open(), MakePtrFromCollection< reco::MuonCollection >.operator()(), MakeVersionedSelector< reco::Muon >.operator()(), TkClonerImpl.operator()(), edm::es::Label.operator()(), CmsTrackerLevelBuilder::ExtractPhiModule.operator()(), VersionedSelector< edm::Ptr< reco::Photon > >.operator()(), CmsTrackerLevelBuilder::ExtractPhiGluedModule.operator()(), L1GctJetCount< nBits >.operator+(), L1GctUnsignedInt< nBits >.operator+(), L1GctTwosComplement< nBits >.operator+(), L1GctJetFinderBase::hfTowerSumsType.operator+(), L1GctJetCount< nBits >.operator++(), Json::ValueConstIterator.operator++(), Json::ValueIterator.operator++(), L1GctTwosComplement< nBits >.operator-(), Json::ValueConstIterator.operator--(), Json::ValueIterator.operator--(), operator<<(), edm::reftobase::Holder< T, REF >.operator=(), edm::reftobase::RefVectorHolder< REFV >.operator=(), edm::reftobase::IndirectVectorHolder< T >.operator=(), edm::EDCollection< T >.operator=(), edm::reftobase::IndirectHolder< T >.operator=(), edm::CloningPtr< T, P >.operator=(), L1GctHfBitCountsLut.operator=(), HcalDcsMap.operator=(), HcalElectronicsMap.operator=(), CastorElectronicsMap.operator=(), edm::RefToBaseVector< T >.operator=(), edm::HepMCProduct.operator=(), L1GctHtMissLut.operator=(), FWConfiguration.operator=(), edm::reftobase::VectorHolder< reco::Candidate, reco::GsfElectronRefVector >.operator=(), L1GctHfEtSumsLut.operator=(), edm::OrphanHandleBase.operator=(), CrossingFrame< T >.operator=(), fwlite::Handle< Collection >.operator=(), edm::ParameterSet.operator=(), edm::ErrorObj.operator=(), edm::eventsetup::DataKey.operator=(), edm::HandleBase.operator=(), edm::Association< reco::FFTJPTJetCollection >.operator=(), edm::DataFrameContainer.operator=(), edm::TriggerResults.operator=(), edm::OutputHandle.operator=(), edm::HLTGlobalStatus.operator=(), edm::value_ptr< edm::service::MessageLoggerDefaults >.operator=(), edm::BasicHandle.operator=(), edm::RefToBase< T >.operator=(), edm::RefToBaseProd< T >.operator=(), edm::FileInPath.operator=(), edm::Exception.operator=(), cms::Exception.operator=(), edm::Handle< GenericObject >.operator=(), edm::Handle< FWGenericObject >.operator=(), edm::RefVectorBase< key_type >.operator=(), edm::SortedCollection< T, SORT >.operator=(), edm::OwnArray< T, MAX_SIZE, P >.operator=(), edm::ValueMap< edm::Ref< std::vector< reco::PFCandidate >, reco::PFCandidate, edm::refhelper::FindUsingAdvance< std::vector< reco::PFCandidate >, reco::PFCandidate > > >.operator=(), edm::OwnVector< T, P >.operator=(), edm::SoATuple< edm::EDConsumerBase::TokenLookupInfo, bool, edm::EDConsumerBase::LabelPlacement, edm::KindOfType >.operator=(), edm::RefVector< C, T, F >.operator=(), edm::MapOfVectors< std::string, AnalysisDescription * >.operator=(), edm::PtrVector< reco::FFTJPTJet >.operator=(), edm::DetSetRefVector< T, C >.operator=(), edm::IDVectorMap< ID, C, P >.operator=(), edm::RangeMap< ID, C, P >.operator=(), l1extra::L1ParticleMap.operator=(), CSCChamberTimeCorrectionsValues.prefill(), ClhepEvaluator.prepare(), edm::hash_detail.print_(), SiStripConfigDb.printAnalysisDescriptions(), SiStripConfigDb.printDeviceDescriptions(), SiStripConfigDb.printFedConnections(), SiStripConfigDb.printFedDescriptions(), L1GctElectronFinalSort.process(), DDLPosPart.processElement(), Phase2TrackerCablingESProducer.produce(), SETPatternRecognition.produce(), SiPixelFakeTemplateDBObjectESSource.produce(), GsfElectronFull5x5Filler.produce(), SiPixelFakeGenErrorDBObjectESSource.produce(), SiStripFedCablingESProducer.produce(), CastorFastClusterProducer.produce(), CSCTriggerPrimitivesProducer.produce(), ConvBremSeedProducer.produce(), CastorClusterProducer.produce(), reco::modules::CosmicTrackSplitter.produce(), CSCSegAlgoST.prune_bad_hits(), SiPixelGenError.pushfile(), SiPixelTemplate2D.pushfile(), SiStripTemplate.pushfile(), SiPixelTemplate.pushfile(), MEtoEDM< TH1F >.putMEtoEdmObject(), StoreEcalCondition.readEcalTBWeightsFromFile(), StoreEcalCondition.readEcalWeightXtalGroupsFromFile(), popcon::RPCEMapSourceHandler.readEMap1(), CSCTFPtLUT.readLUT(), CSCSectorReceiverLUT.readLUTsFromFile(), SensitiveDetectorCatalog.readoutNames(), edm::ProductProvenanceRetriever.readProvenance(), fwlite::Record.Record(), edm::ESProxyFactoryProducer.registerFactory(), edm::ESProxyFactoryProducer.registerFactoryWithKey(), dqmstorepb::ROOTFilePB_Histo.release_full_pathname(), dqmstorepb::ROOTFilePB_Histo.release_streamed_histo(), Tau3MuReco.removeIncorrectMuon(), FWEvePtr< T >.reset(), edm::Worker.resetModuleDescription(), L1GctGlobalHfSumAlgos.resetPipelines(), BtoCharmDecayVertexMergerT< VTX >.resolveBtoDchain(), SiPixelDQMRocLevelAnalyzer.RocSumOneModule(), EcalClusterToolsT< noZS >.roundnessBarrelSuperClusters(), EcalClusterToolsT< noZS >.roundnessSelectedBarrelRecHits(), SiStripConfigDb.runs(), Comp2RefChi2.runTest(), DAFTrackProducerAlgorithm.runWithCandidate(), CSCSegAlgoTC.segmentSort(), FWModelExpressionSelector.select(), heppy::Davismt2.set_momenta(), DCUCapsuleTempDat.setCapsuleTemp(), DCUCCSDat.setCCSTempHigh(), DCUCCSDat.setCCSTempLow(), edm::eventsetup::Callback< T, TReturn, TRecord, TDecorator >.setData(), PltSD.setDetUnitId(), edm::Path.setEarlyDeleteHelpers(), L1GctMet.setExComponent(), FWModelFilter.setExpression(), FWExpressionEvaluator.setExpression(), L1GctMet.setEyComponent(), edm::service::ELdestination.setLineLength(), DCUCCSDat.setM1DCUTemp(), DCUCCSDat.setM1Vcc(), DCUCCSDat.setM1VDD1(), DCUCCSDat.setM1VDD2(), DCUCCSDat.setM1Vinj(), DCUCCSDat.setM2DCUTemp(), DCUCCSDat.setM2Vcc(), DCUCCSDat.setM2VDD1(), DCUCCSDat.setM2VDD2(), DCUCCSDat.setM2Vinj(), TopologyWorker.setPartList(), DCUIDarkPedDat.setPed(), DDG4ProductionCuts.setProdCuts(), gen::Pythia6Service.setPYUPDAParams(), L1GlobalCaloTrigger.setRegion(), RPCSimSetUp.setRPCSetUp(), gen::Pythia6Service.setSLHAParams(), DCULVRBTempsDat.setT1(), DCULVRTempsDat.setT1(), DCULVRBTempsDat.setT2(), DCULVRTempsDat.setT2(), DCULVRBTempsDat.setT3(), DCULVRTempsDat.setT3(), DCSPTMTemp.setTemperature(), HcalCoarsePedestalClient.setupCoarsePedestal(), DQMRootSource.setupFile(), L1GctJet.setupJet(), FWPFTrackUtils.setupLegoTrack(), convbremhelpers::HeavyObjectCache.setupMVA(), TFWLiteSelectorBasic.setupNewFile(), L1GctElectronSorter.setupObjects(), DCUVFETempDat.setVFETemp(), CSCSegAlgoShowering.showerSeg(), SoftElectronMVAEstimator.SoftElectronMVAEstimator(), CmsTrackerLayerBuilder.sortNS(), CmsTrackerRingBuilder.sortNS(), CmsTrackerWheelBuilder.sortNS(), CmsTrackerOTDiscBuilder.sortNS(), CmsTrackerDiskBuilder.sortNS(), CmsTrackerPhase1DiskBuilder.sortNS(), CmsTrackerBuilder.sortNS(), SortSect(), L1GtVhdlTemplateFile.split(), L1MuGMTLUT::PortDecoder.str(), SourceCardRouting.STRINGtoVHDCI(), edm::ErrorObj.swap(), fwlite::Handle< Collection >.swap(), fwlite::Record.syncTo(), edm::hash_detail.toDigest_(), Config.Modifier.toModify(), edm::hash_detail.toString_(), TouchableToHistory.touchableToNavStory(), TkCommonMode.toVector(), HcalTestAnalysis.towersToAdd(), TracktoRPC.TracktoRPC(), dqmservices::TriggerSelector::TreeElement.TreeElement(), sistrip::RawToDigiUnpacker.triggerFed(), DCCMemBlock.unpackMemTowerData(), PedestalsHistosUsingDb.update(), PedsFullNoiseHistosUsingDb.update(), DynamicTruncation.update(), popcon::EcalDCSHandler.updateHV(), popcon::EcalDCSHandler.updateLV(), DynamicTruncation.updateWithCSChits(), DynamicTruncation.updateWithDThits(), metsig::SignPFSpecificAlgo.useOriginalPtrs(), SiStripConfigDb.usingDatabaseCache(), vector_AND(), SourceCardRouting.VHDCItoSTRING(), edm::VParameterSetEntry.VParameterSetEntry(), HcalQie.weight(), ProvenanceDumper.work_(), edm::Wrapper< T >.Wrapper(), and TiXmlNode.~TiXmlNode().

int groupFilesInBlocks.tt = 0

Definition at line 142 of file groupFilesInBlocks.py.

Referenced by DCCEETCCBlock.addTriggerPrimitivesToCollection(), ElectronCalibrationUniv.analyze(), HLTGetDigi.analyze(), pat::helper::VertexingHelper.associate(), DCCTBDataMapper.buildTCCFields(), EgammaHLTElectronDetaDphiProducer.calDEtaDPhiSCTrk(), EMShower.compute(), EgammaTowerIsolationNew< NC >.compute(), TGeoMgrFromDdd.createShape(), EcalCommon.crystalToTriggerTower(), EcalSelectiveReadoutValidation.dccCh(), TowerBlockFormatter.DigiToRaw(), DataCertificationJetMET.dqmEndJob(), DAClusterizerInZ.dump(), EcalTPGStripStatusXMLTranslator.dumpXML(), spr.eECALmatrix(), PFEnergyCalibration.energyEmHad(), EcalElectronicsMapper.fillMaps(), NtupleManager.FillMeasurements(), popcon::EcalDAQHandler.getNewObjects(), popcon::EcalTPGWeightGroupHandler.getNewObjects(), popcon::EcalTPGSlidingWindowHandler.getNewObjects(), popcon::EcalTPGFineGrainStripEEHandler.getNewObjects(), HGCalGeometry.getSummary(), CaloTowerGeometry.getSummary(), CaloSubdetectorGeometry.getSummary(), HcalGeometry.getSummary(), LMFDefFabric.getTrigType(), LMFDefFabric.getTrigTypeFromID(), ALIFileIn.getWordsInLine(), TEcnaHistos.HistimePlot(), TEcnaHistos.HistoPlot(), EGammaMvaEleEstimator.IDIsoCombinedMvaValue(), PerformancePayloadFromBinnedTFormula.initialize(), CSCRadialStripTopology.localError(), TkRadialStripTopology.localError(), SiStripHistoPlotter.makePlot(), QTestConfigurationParser.monitorElementTestsMap(), EGammaMvaEleEstimator.mvaValue(), EGammaMvaEleEstimatorCSA14.mvaValue(), TracksClusteringFromDisplacedSeed.nearTracks(), TransientVertex.operator reco::VertexCompositePtrCandidate(), TemplatedSecondaryVertexProducer< IPTI, VTX >::SVBuilder.operator()(), PhiMatching(), FWTriggerTableView.populateController(), SiPixelFedCablingMapBuilder.produce(), TemplatedInclusiveVertexFinder< InputContainer, VTX >.produce(), Onia2MuMuPAT.produce(), pat::PATMuonProducer.produce(), pat::PATElectronProducer.produce(), EcalDigiDisplay.readEBDigis(), EcalFEtoDigi.readInput(), MuonResiduals5DOFFitter.readNtuple(), MuonResiduals6DOFrphiFitter.readNtuple(), MuonResiduals6DOFFitter.readNtuple(), reco::GhostTrackVertexFinder.refitGhostTrack(), FWLiteESSource.registerProxies(), TrackVertexArbitration< VTX >.trackVertexArbitrator(), DDG4SolidConverter.trunctubs(), FWLiteESRecordWriterAnalyzer.update(), DAClusterizerInZ.vertices(), FEConfigFgrParamDat.writeArrayDB(), FEConfigFgrGroupDat.writeArrayDB(), FEConfigWeightGroupDat.writeArrayDB(), CaliCrystalIntercalDat.writeArrayDB(), FEConfigParamDat.writeArrayDB(), MonTestPulseDat.writeArrayDB(), MonTTConsistencyDat.writeArrayDB(), MonPedestalsDat.writeArrayDB(), MonMemTTConsistencyDat.writeArrayDB(), MonPNIRedDat.writeArrayDB(), MonPNLed2Dat.writeArrayDB(), MonPNMGPADat.writeArrayDB(), MonPNGreenDat.writeArrayDB(), MonPNBlueDat.writeArrayDB(), MonPNLed1Dat.writeArrayDB(), MonPNRedDat.writeArrayDB(), DCULVRVoltagesDat.writeArrayDB(), LMFRunIOV.writeDBSql(), and LaserSorter.writeEventHeader().

string groupFilesInBlocks.type = "int"

Definition at line 29 of file groupFilesInBlocks.py.

string groupFilesInBlocks.usage = './%(prog)s NBLOCKS INFILE OUTFILE [options]\n'

Definition at line 16 of file groupFilesInBlocks.py.