CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Private Member Functions
BeautifulSoup.PageElement Class Reference
Inheritance diagram for BeautifulSoup.PageElement:
BeautifulSoup.NavigableString BeautifulSoup.Tag BeautifulSoup.CData BeautifulSoup.Comment BeautifulSoup.Declaration BeautifulSoup.ProcessingInstruction BeautifulSoup.BeautifulStoneSoup BeautifulSoup.BeautifulSOAP BeautifulSoup.BeautifulSoup BeautifulSoup.RobustXMLParser BeautifulSoup.SimplifyingSOAPParser BeautifulSoup.ICantBelieveItsBeautifulSoup BeautifulSoup.MinimalSoup BeautifulSoup.RobustHTMLParser BeautifulSoup.RobustWackAssHTMLParser BeautifulSoup.RobustInsanelyWackAssHTMLParser

Public Member Functions

def append (self, tag)
 
def extract (self)
 
def findAllNext (self, name=None, attrs={}, text=None, limit=None, kwargs)
 
def findAllPrevious (self, name=None, attrs={}, text=None, limit=None, kwargs)
 
def findNext (self, name=None, attrs={}, text=None, kwargs)
 
def findNextSibling (self, name=None, attrs={}, text=None, kwargs)
 
def findNextSiblings (self, name=None, attrs={}, text=None, limit=None, kwargs)
 
def findParent (self, name=None, attrs={}, kwargs)
 
def findParents (self, name=None, attrs={}, limit=None, kwargs)
 
def findPrevious (self, name=None, attrs={}, text=None, kwargs)
 
def findPreviousSibling (self, name=None, attrs={}, text=None, kwargs)
 
def findPreviousSiblings (self, name=None, attrs={}, text=None, limit=None, kwargs)
 
def insert (self, position, newChild)
 
def nextGenerator (self)
 
def nextSiblingGenerator (self)
 
def parentGenerator (self)
 
def previousGenerator (self)
 
def previousSiblingGenerator (self)
 
def replaceWith (self, replaceWith)
 
def replaceWithChildren (self)
 
def setup (self, parent=None, previous=None)
 
def substituteEncoding (self, str, encoding=None)
 
def toEncoding (self, s, encoding=None)
 

Public Attributes

 next
 
 nextSibling
 
 parent
 
 previous
 
 previousSibling
 

Private Member Functions

def _findAll (self, name, attrs, text, limit, generator, kwargs)
 
def _findOne (self, method, name, attrs, text, kwargs)
 
def _invert (h)
 
def _lastRecursiveChild (self)
 
def _sub_entity (self, x)
 

Detailed Description

Contains the navigational information for some part of the page
(either a tag or a piece of text)

Definition at line 114 of file BeautifulSoup.py.

Member Function Documentation

def BeautifulSoup.PageElement._findAll (   self,
  name,
  attrs,
  text,
  limit,
  generator,
  kwargs 
)
private

Definition at line 349 of file BeautifulSoup.py.

References cmsBatch.generator, and BeautifulSoup.PageElement.next.

Referenced by BeautifulSoup.Tag.findAll(), BeautifulSoup.PageElement.findAllNext(), BeautifulSoup.PageElement.findAllPrevious(), BeautifulSoup.PageElement.findNextSiblings(), BeautifulSoup.PageElement.findParents(), and BeautifulSoup.PageElement.findPreviousSiblings().

349  def _findAll(self, name, attrs, text, limit, generator, **kwargs):
350  "Iterates over a generator looking for things that match."
351 
352  if isinstance(name, SoupStrainer):
353  strainer = name
354  # (Possibly) special case some findAll*(...) searches
355  elif text is None and not limit and not attrs and not kwargs:
356  # findAll*(True)
357  if name is True:
358  return [element for element in generator()
359  if isinstance(element, Tag)]
360  # findAll*('tag-name')
361  elif isinstance(name, str):
362  return [element for element in generator()
363  if isinstance(element, Tag) and
364  element.name == name]
365  else:
366  strainer = SoupStrainer(name, attrs, text, **kwargs)
367  # Build a SoupStrainer
368  else:
369  strainer = SoupStrainer(name, attrs, text, **kwargs)
370  results = ResultSet(strainer)
371  g = generator()
372  while True:
373  try:
374  i = next(g)
375  except StopIteration:
376  break
377  if i:
378  found = strainer.search(i)
379  if found:
380  results.append(found)
381  if limit and len(results) >= limit:
382  break
383  return results
384 
def _findAll(self, name, attrs, text, limit, generator, kwargs)
def BeautifulSoup.PageElement._findOne (   self,
  method,
  name,
  attrs,
  text,
  kwargs 
)
private

Definition at line 342 of file BeautifulSoup.py.

References AlcaSiPixelAliHarvester0T_cff.method.

Referenced by BeautifulSoup.PageElement.findNext(), BeautifulSoup.PageElement.findNextSibling(), BeautifulSoup.PageElement.findPrevious(), and BeautifulSoup.PageElement.findPreviousSibling().

342  def _findOne(self, method, name, attrs, text, **kwargs):
343  r = None
344  l = method(name, attrs, text, 1, **kwargs)
345  if l:
346  r = l[0]
347  return r
348 
def _findOne(self, method, name, attrs, text, kwargs)
def BeautifulSoup.PageElement._invert (   h)
private

Definition at line 118 of file BeautifulSoup.py.

118  def _invert(h):
119  "Cheap function to invert a hash."
120  i = {}
121  for k,v in h.items():
122  i[v] = k
123  return i
124 
def BeautifulSoup.PageElement._lastRecursiveChild (   self)
private

Definition at line 198 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.extract(), BeautifulSoup.Tag.getText(), and BeautifulSoup.Tag.recursiveChildGenerator().

199  "Finds the last element beneath this object to be parsed."
200  lastChild = self
201  while hasattr(lastChild, 'contents') and lastChild.contents:
202  lastChild = lastChild.contents[-1]
203  return lastChild
204 
def BeautifulSoup.PageElement._sub_entity (   self,
  x 
)
private
Used with a regular expression to substitute the
appropriate XML entity for an XML special character.

Definition at line 444 of file BeautifulSoup.py.

Referenced by BeautifulSoup.NavigableString.__str__(), and BeautifulSoup.Tag.__str__().

444  def _sub_entity(self, x):
445  """Used with a regular expression to substitute the
446  appropriate XML entity for an XML special character."""
447  return "&" + self.XML_SPECIAL_CHARS_TO_ENTITIES[x.group(0)[0]] + ";"
448 
449 
def BeautifulSoup.PageElement.append (   self,
  tag 
)
Appends the given tag to the contents of this tag.

Definition at line 264 of file BeautifulSoup.py.

References FastLineRecognition::Cluster.contents, L1GctProcessor::Pipeline< T >.contents, dqm_interfaces.DirFetcher.contents, BeautifulSoup.Tag.contents, BinningPointByMap.insert(), TSinglePedEntry.insert(), DDMapper< KeyType, ValueType >.insert(), cond::persistency::ITagTable.insert(), CTPPSRPAlignmentCorrectionsDataSequence.insert(), TPedValues.insert(), ESCondObjectContainer< T >.insert(), associationMapFilterValuesHelpers::IfFound< edm::Ref< C, T, F > >.insert(), EcalContainer< DetId, T >.insert(), cond::persistency::GLOBAL_TAG::Table.insert(), RecoIdealGeometry.insert(), cond::persistency::TAG::Table.insert(), ShallowDigisProducer.insert(), edm::OneToValue< CKey, Val, index >.insert(), EcalCondObjectContainer< T >.insert(), associationMapFilterValuesHelpers::IfFound< edm::RefToBase< T > >.insert(), edm::OneToMany< CKey, CVal, index >.insert(), CTPPSPixelAnalysisMask.insert(), edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >.insert(), TotemAnalysisMask.insert(), EcalCondTowerObjectContainer< T >.insert(), CTPPSPixelDAQMapping.insert(), cond::persistency::RunInfoEditor.insert(), edm::OneToManyWithQualityGeneric< CKey, CVal, Q, index, KeyRefProd, ValRefProd, KeyRef, ValRef >.insert(), associationMapFilterValuesHelpers::IfFound< edm::RefVector< C, T, F > >.insert(), reco::CATopJetTagInfo.insert(), reco::JetTrackMatch< JetC >.insert(), edm::helper::Filler< Map >.insert(), DTBufferTree< Key, Content >.insert(), TotemDAQMapping.insert(), cond::persistency::RUN_INFO::Table.insert(), TrackerDetToDTCELinkCablingMap.insert(), associationMapFilterValuesHelpers::IfFound< std::vector< std::pair< edm::Ref< C, T, F >, Q > > >.insert(), cond::persistency::GLOBAL_TAG_MAP::Table.insert(), cond::persistency::GTEditor.insert(), edm::IDVectorMap< ID, C, P >.insert(), cond::persistency::PAYLOAD::Table.insert(), associationMapFilterValuesHelpers::IfFound< std::vector< std::pair< edm::RefToBase< T >, Q > > >.insert(), cond::persistency::ITagMigrationTable.insert(), cond::persistency::IOVEditor.insert(), Phase2ITPixelClusterShapeCache.insert(), SiPixelClusterShapeCache.insert(), BXVector< T >.insert(), reco::HTTTopJetTagInfo.insert(), cond::persistency::IPayloadMigrationTable.insert(), cond::persistency::ITagLogTable.insert(), edm::helper::IndexRangeAssociation::FastFiller.insert(), cond::persistency::IGTTable.insert(), cond::persistency::IGTMapTable.insert(), edm::DetSetVector< T >.insert(), reco::TemplatedSoftLeptonTagInfo< REF >.insert(), edm::OwnVector< T, P >.insert(), edm::AssociationMap< Tag >.insert(), cond::persistency::IRunInfoTable.insert(), cond::persistency::TAG_LOG::Table.insert(), edm::ProductResolverIndexHelper.insert(), edm::Trie< T >.insert(), BeautifulSoup.PageElement.insert(), reco::TaggingVariableList.insert(), edmNew::DetSetVector< T >.insert(), and cond::persistency::BulkInserter< Types >.insert().

Referenced by diclist.diclist.add(), Vispa.Views.PropertyView.PropertyView.addProperty(), and BeautifulSoup.Tag.setString().

264  def append(self, tag):
265  """Appends the given tag to the contents of this tag."""
266  self.insert(len(self.contents), tag)
267 
def insert(self, position, newChild)
def BeautifulSoup.PageElement.extract (   self)
Destructively rips this element out of the tree.

Definition at line 169 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._lastRecursiveChild(), BeautifulSoup.PageElement.nextSibling, BeautifulSoup.PageElement.parent, BeautifulSoup.PageElement.previous, and BeautifulSoup.PageElement.previousSibling.

Referenced by BeautifulSoup.Tag.decompose(), BeautifulSoup.PageElement.replaceWith(), and BeautifulSoup.PageElement.replaceWithChildren().

169  def extract(self):
170  """Destructively rips this element out of the tree."""
171  if self.parent:
172  try:
173  del self.parent.contents[self.parent.index(self)]
174  except ValueError:
175  pass
176 
177  #Find the two elements that would be next to each other if
178  #this element (and any children) hadn't been parsed. Connect
179  #the two.
180  lastChild = self._lastRecursiveChild()
181  nextElement = lastChild.next
182 
183  if self.previous:
184  self.previous.next = nextElement
185  if nextElement:
186  nextElement.previous = self.previous
187  self.previous = None
188  lastChild.next = None
189 
190  self.parent = None
191  if self.previousSibling:
192  self.previousSibling.nextSibling = self.nextSibling
193  if self.nextSibling:
194  self.nextSibling.previousSibling = self.previousSibling
195  self.previousSibling = self.nextSibling = None
196  return self
197 
def BeautifulSoup.PageElement.findAllNext (   self,
  name = None,
  attrs = {},
  text = None,
  limit = None,
  kwargs 
)
Returns all items that match the given criteria and appear
after this Tag in the document.

Definition at line 274 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findAll(), and BeautifulSoup.PageElement.nextGenerator().

Referenced by BeautifulSoup.PageElement.findNext().

274  **kwargs):
275  """Returns all items that match the given criteria and appear
276  after this Tag in the document."""
277  return self._findAll(name, attrs, text, limit, self.nextGenerator,
278  **kwargs)
279 
def _findAll(self, name, attrs, text, limit, generator, kwargs)
def BeautifulSoup.PageElement.findAllPrevious (   self,
  name = None,
  attrs = {},
  text = None,
  limit = None,
  kwargs 
)
Returns all items that match the given criteria and appear
before this Tag in the document.

Definition at line 300 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findAll(), and BeautifulSoup.PageElement.previousGenerator().

Referenced by BeautifulSoup.PageElement.findPrevious().

300  **kwargs):
301  """Returns all items that match the given criteria and appear
302  before this Tag in the document."""
303  return self._findAll(name, attrs, text, limit, self.previousGenerator,
304  **kwargs)
def _findAll(self, name, attrs, text, limit, generator, kwargs)
def BeautifulSoup.PageElement.findNext (   self,
  name = None,
  attrs = {},
  text = None,
  kwargs 
)
Returns the first item that matches the given criteria and
appears after this Tag in the document.

Definition at line 268 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findOne(), and BeautifulSoup.PageElement.findAllNext().

268  def findNext(self, name=None, attrs={}, text=None, **kwargs):
269  """Returns the first item that matches the given criteria and
270  appears after this Tag in the document."""
271  return self._findOne(self.findAllNext, name, attrs, text, **kwargs)
272 
def _findOne(self, method, name, attrs, text, kwargs)
def findNext(self, name=None, attrs={}, text=None, kwargs)
def findAllNext(self, name=None, attrs={}, text=None, limit=None, kwargs)
def BeautifulSoup.PageElement.findNextSibling (   self,
  name = None,
  attrs = {},
  text = None,
  kwargs 
)
Returns the closest sibling to this Tag that matches the
given criteria and appears after this Tag in the document.

Definition at line 280 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findOne(), and BeautifulSoup.PageElement.findNextSiblings().

280  def findNextSibling(self, name=None, attrs={}, text=None, **kwargs):
281  """Returns the closest sibling to this Tag that matches the
282  given criteria and appears after this Tag in the document."""
283  return self._findOne(self.findNextSiblings, name, attrs, text,
284  **kwargs)
285 
def _findOne(self, method, name, attrs, text, kwargs)
def findNextSiblings(self, name=None, attrs={}, text=None, limit=None, kwargs)
def findNextSibling(self, name=None, attrs={}, text=None, kwargs)
def BeautifulSoup.PageElement.findNextSiblings (   self,
  name = None,
  attrs = {},
  text = None,
  limit = None,
  kwargs 
)
Returns the siblings of this Tag that match the given
criteria and appear after this Tag in the document.

Definition at line 287 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findAll(), and BeautifulSoup.PageElement.nextSiblingGenerator().

Referenced by BeautifulSoup.PageElement.findNextSibling().

287  **kwargs):
288  """Returns the siblings of this Tag that match the given
289  criteria and appear after this Tag in the document."""
290  return self._findAll(name, attrs, text, limit,
291  self.nextSiblingGenerator, **kwargs)
def _findAll(self, name, attrs, text, limit, generator, kwargs)
def BeautifulSoup.PageElement.findParent (   self,
  name = None,
  attrs = {},
  kwargs 
)
Returns the closest parent of this Tag that matches the given
criteria.

Definition at line 321 of file BeautifulSoup.py.

References BeautifulSoup.PageElement.findParents().

321  def findParent(self, name=None, attrs={}, **kwargs):
322  """Returns the closest parent of this Tag that matches the given
323  criteria."""
324  # NOTE: We can't use _findOne because findParents takes a different
325  # set of arguments.
326  r = None
327  l = self.findParents(name, attrs, 1)
328  if l:
329  r = l[0]
330  return r
331 
def findParents(self, name=None, attrs={}, limit=None, kwargs)
def findParent(self, name=None, attrs={}, kwargs)
def BeautifulSoup.PageElement.findParents (   self,
  name = None,
  attrs = {},
  limit = None,
  kwargs 
)
Returns the parents of this Tag that match the given
criteria.

Definition at line 332 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findAll(), and BeautifulSoup.PageElement.parentGenerator().

Referenced by BeautifulSoup.PageElement.findParent().

332  def findParents(self, name=None, attrs={}, limit=None, **kwargs):
333  """Returns the parents of this Tag that match the given
334  criteria."""
335 
336  return self._findAll(name, attrs, None, limit, self.parentGenerator,
337  **kwargs)
def findParents(self, name=None, attrs={}, limit=None, kwargs)
def _findAll(self, name, attrs, text, limit, generator, kwargs)
def BeautifulSoup.PageElement.findPrevious (   self,
  name = None,
  attrs = {},
  text = None,
  kwargs 
)
Returns the first item that matches the given criteria and
appears before this Tag in the document.

Definition at line 294 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findOne(), and BeautifulSoup.PageElement.findAllPrevious().

294  def findPrevious(self, name=None, attrs={}, text=None, **kwargs):
295  """Returns the first item that matches the given criteria and
296  appears before this Tag in the document."""
297  return self._findOne(self.findAllPrevious, name, attrs, text, **kwargs)
298 
def _findOne(self, method, name, attrs, text, kwargs)
def findPrevious(self, name=None, attrs={}, text=None, kwargs)
def findAllPrevious(self, name=None, attrs={}, text=None, limit=None, kwargs)
def BeautifulSoup.PageElement.findPreviousSibling (   self,
  name = None,
  attrs = {},
  text = None,
  kwargs 
)
Returns the closest sibling to this Tag that matches the
given criteria and appears before this Tag in the document.

Definition at line 307 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findOne(), and BeautifulSoup.PageElement.findPreviousSiblings().

307  def findPreviousSibling(self, name=None, attrs={}, text=None, **kwargs):
308  """Returns the closest sibling to this Tag that matches the
309  given criteria and appears before this Tag in the document."""
310  return self._findOne(self.findPreviousSiblings, name, attrs, text,
311  **kwargs)
312 
def _findOne(self, method, name, attrs, text, kwargs)
def findPreviousSibling(self, name=None, attrs={}, text=None, kwargs)
def findPreviousSiblings(self, name=None, attrs={}, text=None, limit=None, kwargs)
def BeautifulSoup.PageElement.findPreviousSiblings (   self,
  name = None,
  attrs = {},
  text = None,
  limit = None,
  kwargs 
)
Returns the siblings of this Tag that match the given
criteria and appear before this Tag in the document.

Definition at line 314 of file BeautifulSoup.py.

References BeautifulSoup.PageElement._findAll(), and BeautifulSoup.PageElement.previousSiblingGenerator().

Referenced by BeautifulSoup.PageElement.findPreviousSibling().

314  limit=None, **kwargs):
315  """Returns the siblings of this Tag that match the given
316  criteria and appear before this Tag in the document."""
317  return self._findAll(name, attrs, text, limit,
318  self.previousSiblingGenerator, **kwargs)
def _findAll(self, name, attrs, text, limit, generator, kwargs)
def BeautifulSoup.PageElement.insert (   self,
  position,
  newChild 
)

Definition at line 205 of file BeautifulSoup.py.

References FastLineRecognition::Cluster.contents, L1GctProcessor::Pipeline< T >.contents, dqm_interfaces.DirFetcher.contents, BeautifulSoup.Tag.contents, MatchParam.index, Indexed< T >.index(), EncodedTruthId.index(), TShapeAnalysis.index, OAQualityTranslator.index(), AlpgenParTokens.index, Phase2TrackerClusterizerArray.index(), SortObject.index, CastorChannelCoder.index(), l1t::MuonCaloSum.index(), edm::ElementID.index(), L1GctFibreWord.index(), MasterCollection< TColl >.index(), MasterCollection< C1 >.index(), helper::MasterCollection< C1 >.index(), CovarianceParameterization.index(), PFTauMVAInputDiscriminantTranslator::DiscriminantInfo.index, ImpactPoint.index, CSCChamberFitter.index(), CharmTagger::MVAVar.index, edm::soa::impl::FoundIndex< I >.index, EcalUncalibRecHitRatioMethodAlgo< C >::Ratio.index, MCPdgIndexFilter.index, Grid1D.index(), pat::Conversion.index(), SiPixelCPEGenericDBErrorParametrization.index(), EcalTrigPrimCompactColl.index(), edm::test::ESPutTokenT< T >.index(), btag::SimpleMatrix< T >.index(), btag::SimpleMatrix< Delta >.index(), edm::soa::impl::GetIndex< I, T, TPL >.index, EcalUncalibRecHitRatioMethodAlgo< C >::Tmax.index, L1RecoMatch.index(), MFGrid3D.index(), pos::PixelDACScanRange.index(), L1TUtmCutValue.index, edm::EDGetToken.index(), Phase2ITPixelArrayBuffer.index(), SiPixelArrayBuffer.index(), FWModelId.index(), helper::MasterCollection< edm::View< T > >.index(), edm::EDPutToken.index(), muonisolation::IsolatorByNominalEfficiency::ConeSizes.index(), SeedingLayerSetsHits::SeedingLayer.index(), SiPixelTemplateDBObject::Reader.index(), TaggingVariablePlotter::VariableConfig::Plot.index, Phase2Tracker::Phase2TrackerDigiProducer::Registry.index, ESGetToken< T, R >.index(), edm::LuminosityBlockPrincipal.index(), edm::ESGetToken< ESProduct, ESRecord >.index(), edm::ESGetToken< HcalDDDSimConstants, HcalSimNumberingRecord >.index(), edm::ESGetToken< TransientTrackBuilder, TransientTrackRecord >.index(), edm::ESGetToken< AlignmentErrorsExtended, DTAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< DDCompactView, IdealGeometryRecord >.index(), edm::ESGetToken< DDSpecParRegistry, DDSpecParRegistryRcd >.index(), edm::ESGetToken< MuonNumbering, MuonNumberingRecord >.index(), edm::ESGetToken< Alignments, DTAlignmentRcd >.index(), edm::ESGetToken< LHCInterpolatedOpticalFunctionsSetCollection, CTPPSInterpolatedOpticsRcd >.index(), edm::ESGetToken< CaloGeometry, CaloGeometryRecord >.index(), edm::ESGetToken< DetGeomDesc, IdealGeometryRecord >.index(), edm::ESGetToken< FastTimeTopology, IdealGeometryRecord >.index(), edm::ESGetToken< CaloSubdetectorGeometry, IdealGeometryRecord >.index(), edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< FastTimeParameters, IdealGeometryRecord >.index(), edm::ESGetToken< CTPPSRPAlignmentCorrectionsData, ALIGNMENT_REC >.index(), edm::ESGetToken< DetGeomDesc, VeryForwardRealGeometryRecord >.index(), edm::ESGetToken< PTrackerParameters, PTrackerParametersRcd >.index(), edm::ESGetToken< HGCalParameters, IdealGeometryRecord >.index(), edm::ESGetToken< RPCGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< RecoIdealGeometry, DTRecoGeometryRcd >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalMappingElectronicsRcd >.index(), edm::ESGetToken< Alignments, CSCAlignmentRcd >.index(), edm::ESGetToken< HcalParameters, HcalParametersRcd >.index(), edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord >.index(), edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd >.index(), edm::ESGetToken< ME0Geometry, MuonGeometryRecord >.index(), edm::ESGetToken< MTDGeometry, MTDDigiGeometryRecord >.index(), edm::ESGetToken< Alignments, ESAlignmentRcd >.index(), edm::ESGetToken< Alignments, TrackerAlignmentRcd >.index(), edm::ESGetToken< LHCInfo, LHCInfoRcd >.index(), edm::ESGetToken< DetGeomDesc, VeryForwardMisalignedGeometryRecord >.index(), edm::ESGetToken< CTPPSRPAlignmentCorrectionsData, RPMisalignedAlignmentRecord >.index(), edm::ESGetToken< CSCGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< DTGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< Alignments, GlobalPositionRcd >.index(), edm::ESGetToken< GeometricDet, IdealGeometryRecord >.index(), edm::ESGetToken< MuonDDDConstants, MuonNumberingRecord >.index(), edm::ESGetToken< CTPPSRPAlignmentCorrectionsData, RPRealAlignmentRecord >.index(), edm::ESGetToken< HGCalTopology, IdealGeometryRecord >.index(), edm::ESGetToken< RecoIdealGeometry, CSCRecoGeometryRcd >.index(), edm::ESGetToken< GEMGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< TrackerTopology, TrackerTopologyRcd >.index(), edm::ESGetToken< AlignmentErrorsExtended, CSCAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< CSCRecoDigiParameters, CSCRecoDigiParametersRcd >.index(), edm::ESGetToken< DDDetector, GeometryFileRcd >.index(), MuonErrorMatrix.index(), CSCAnodeData2007.index(), edm::HLTPathStatus.index(), Grid3D.index(), edm::RunPrincipal.index(), UETableProducer.index, edm::LuminosityBlockForOutput.index(), IsolatedPixelTrackCandidateProducer::seedAtEC.index, L1Phase2MuDTPhDigi.index(), L1CaloEmCand.index(), edm::LuminosityBlock.index(), MFGrid.index(), IsolatedPixelTrackCandidateL1TProducer::seedAtEC.index, ProjectMatrix< double, 5, N >.index, ProjectMatrix< double, 5, 1 >.index, ProjectMatrix< double, 5, 2 >.index, ProjectMatrix< double, 5, D >.index, ProjectMatrix< double, 5, D > void.index, ProjectMatrix< T, N, D >.index, MVAVar.index, geometryXMLparser.DTAlignable.index(), SiPixel2DTemplateDBObject.index(), SiPixelGenErrorDBObject.index(), MTDArrayBuffer.index(), edm::EDGetTokenT< PFTauDiscriminator >.index(), edm::EDGetTokenT< std::vector< l1extra::L1MuonParticle > >.index(), edm::EDGetTokenT< edm::View< reco::Muon > >.index(), edm::EDGetTokenT< int >.index(), edm::EDGetTokenT< CSCALCTDigiCollection >.index(), edm::EDGetTokenT< edm::View< pat::pat::Jet > >.index(), edm::EDGetTokenT< std::vector< RHS > >.index(), edm::EDGetTokenT< edm::View< reco::pat::Jet > >.index(), edm::EDGetTokenT< std::vector< pat::Jet > >.index(), edm::EDGetTokenT< TTClusterAssociationMap< edm::Ref > >.index(), edm::EDGetTokenT< edm::View< reco::RecoCandidate > >.index(), edm::EDGetTokenT< std::vector< reco::Vertex > >.index(), edm::EDGetTokenT< LHEXMLStringProduct >.index(), edm::EDGetTokenT< SimClusterCollection >.index(), edm::EDGetTokenT< reco::ElectronCollection >.index(), EDGetTokenT< TrajTrackAssociationCollection >.index(), edm::EDGetTokenT< L2MuonTrajectorySeedCollection >.index(), EDGetTokenT< SiStripRecHit2DCollection >.index(), edm::EDGetTokenT< edm::View< reco::pat::Muon > >.index(), edm::EDGetTokenT< reco::SiStripElectronCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PreIdRef > >.index(), vector< Trajectory >.index(), edm::EDGetTokenT< std::vector< JetType > >.index(), edm::EDGetTokenT< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > >.index(), edm::EDGetTokenT< edm::View< reco::pat::Photon > >.index(), edm::EDGetTokenT< edm::SortedCollection< HFRecHit > >.index(), edm::EDGetTokenT< reco::HcalIsolatedTrackCandidateCollection >.index(), edm::EDGetTokenT< L1GctEtMiss >.index(), edm::EDGetTokenT< std::vector< reco::CastorTower > >.index(), edm::EDGetTokenT< TTTrackAssociationMap< edm::Ref > >.index(), edm::EDGetTokenT< PFTauTagInfoCollection >.index(), EDGetTokenT< HBHERecHitCollection >.index(), edm::EDGetTokenT< PileupVertexContent >.index(), edm::EDGetTokenT< reco::TrackCandidateCaloClusterPtrAssociation >.index(), edm::EDGetTokenT< edm::ContainerMask< edmNew::DetSetVector< SiPixelCluster > > >.index(), EDGetTokenT< EcalRecHitCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondRecHit > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelRecHit > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::JetID > >.index(), edm::EDGetTokenT< std::vector< L1MuGMTCand > >.index(), edm::EDGetTokenT< BasicJetCollection >.index(), edm::EDGetTokenT< FEDRawDataCollection >.index(), edm::EDGetTokenT< edm::View< reco::PFRecTrack > >.index(), edm::EDGetTokenT< reco::PUSubMETCandInfoCollection >.index(), edm::EDGetTokenT< std::vector< reco::GsfElectron > >.index(), edm::EDGetTokenT< std::pair< double, double > >.index(), edm::EDGetTokenT< edm::View< pat::MET > >.index(), edm::EDGetTokenT< std::vector< edm::ErrorSummaryEntry > >.index(), edm::EDGetTokenT< reco::ElectronSeedCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondDigi > >.index(), edm::EDGetTokenT< L1GctEmCandCollection >.index(), edm::EDGetTokenT< CaloTowerBxCollection >.index(), edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator >.index(), edm::EDGetTokenT< reco::RecoEcalCandidateIsolationMap >.index(), edm::EDGetTokenT< reco::PFCluster::EEtoPSAssociation >.index(), StrictWeakOrdering< HFRecHit >.index(), edm::EDGetTokenT< EEDigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelCluster > >.index(), edm::EDGetTokenT< BXVector< GlobalAlgBlk > >.index(), edm::EDGetTokenT< L1GlobalTriggerObjectMaps >.index(), edm::EDGetTokenT< EGammaBxCollection >.index(), edm::EDGetTokenT< PMTDSimAccumulator >.index(), edm::EDGetTokenT< DTuROSFEDDataCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPDigi > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPCluster > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPLocalTrack > >.index(), View< reco::Muon >.index(), edm::EDGetTokenT< std::vector< SeedStopInfo > >.index(), edm::EDGetTokenT< edm::View< pat::pat::Electron > >.index(), edm::EDGetTokenT< edm::Association< reco::GenJetCollection > >.index(), edm::EDGetTokenT< edm::Association >.index(), edm::EDGetTokenT< MVACollection >.index(), edm::EDGetTokenT< PEcalValidInfo >.index(), edm::EDGetTokenT< trigger::HLTPrescaleTable >.index(), edm::EDGetTokenT< std::vector< reco::RecoChargedCandidate > >.index(), edm::EDGetTokenT< TrackCandidateCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HODataFrame > >.index(), edm::EDGetTokenT< BXVector< T > >.index(), edm::EDGetTokenT< L1GtTriggerMenuLite >.index(), edm::EDGetTokenT< TriggerEvent >.index(), edm::EDGetTokenT< std::vector< pat::GenericParticle > >.index(), edm::EDGetTokenT< std::set< EEDetId > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonTimeExtra > >.index(), EDGetTokenT< QIE11DigiCollection >.index(), edm::EDGetTokenT< DTRecClusterCollection >.index(), edm::EDGetTokenT< L3MuonTrajectorySeedCollection >.index(), edm::EDGetTokenT< edm::View< reco::Track > >.index(), edm::EDGetTokenT< reco::EvtPlaneCollection >.index(), edm::EDGetTokenT< l1extra::L1EtMissParticleCollection >.index(), edm::EDGetTokenT< reco::PFClusterCollection >.index(), edm::EDGetTokenT< PHGCalValidInfo >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemVFATStatus > >.index(), edm::EDGetTokenT< EMTFDaqOutCollection >.index(), edm::EDGetTokenT< DTDigiCollection >.index(), edm::EDGetTokenT< edm::View< reco::GsfElectron > >.index(), edm::EDGetTokenT< DTROS25Collection >.index(), edm::EDGetTokenT< std::vector< reco::FFTAnyJet< reco::Jet > > >.index(), edm::EDGetTokenT< BottomFwdPtrCollection >.index(), edm::EDGetTokenT< TIn >.index(), edm::EDGetTokenT< edm::Association< VertexCollection > >.index(), edm::EDGetTokenT< CrossingFrame< edm::edm::HepMCProduct > >.index(), edm::EDGetTokenT< RegionsSeedingHitSets >.index(), edm::EDGetTokenT< edm::View< TrajectorySeed > >.index(), edm::EDGetTokenT< ValType >.index(), edm::EDGetTokenT< COLLECTION >.index(), edm::EDGetTokenT< edm::OwnVector >.index(), edm::EDGetTokenT< MuonBxCollection >.index(), edm::EDGetTokenT< edm::View< pat::pat::Photon > >.index(), edm::EDGetTokenT< GEMDigiCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > >.index(), edm::EDGetTokenT< reco::BeamHaloSummary >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< reco::GenParticle > > >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< pat::PackedGenParticle > > >.index(), edm::EDGetTokenT< reco::JetFlavourMatchingCollection >.index(), edm::EDGetTokenT< edm::View< object > >.index(), DetSetVector< PixelDigi >.index(), edm::EDGetTokenT< edm::View< reco::SuperCluster > >.index(), edm::EDGetTokenT< ObjCollType >.index(), edm::EDGetTokenT< std::vector< TTTrack< edm::Ref > > >.index(), DetSetVector< SiPixelCalibDigi >.index(), edm::EDGetTokenT< edm::HLTPathStatus >.index(), edm::EDGetTokenT< edm::SortedCollection< HFRecHit, edm::StrictWeakOrdering< HFRecHit > > >.index(), edm::EDGetTokenT< BXVector< l1t::Muon > >.index(), edm::EDGetTokenT< METCollection >.index(), edm::EDGetTokenT< Obj >.index(), edm::EDGetTokenT< edm::ValueMap< TIn > >.index(), edm::EDGetTokenT< PSimHitContainer >.index(), vector< bool >.index(), edm::EDGetTokenT< l1t::EMTFDaqOutCollection >.index(), edm::EDGetTokenT< l1t::EMTFHitCollection >.index(), edm::EDGetTokenT< reco::VertexCollection >.index(), edm::EDGetTokenT< reco::JetIDValueMap >.index(), edm::EDGetTokenT< L1GlobalTriggerReadoutRecord >.index(), edm::EDGetTokenT< DTRecSegment2DCollection >.index(), edm::EDGetTokenT< reco::PFMETCollection >.index(), edm::EDGetTokenT< reco::IsolatedTauTagInfoCollection >.index(), edm::EDGetTokenT< std::vector< pat::TriggerObjectStandAlone > >.index(), edm::EDGetTokenT< edm::View< pat::IsolatedTrack > >.index(), vector< int >.index(), edm::EDGetTokenT< CSCComparatorDigiCollection >.index(), edm::EDGetTokenT< GenLumiInfoProduct >.index(), edm::EDGetTokenT< HcalTBBeamCounters >.index(), edm::EDGetTokenT< reco::SecondaryVertexTagInfoCollection >.index(), edm::EDGetTokenT< edm::ValueMap< int > >.index(), edm::EDGetTokenT< edm::PassiveHitContainer >.index(), edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPUVPattern > >.index(), edm::EDGetTokenT< C >.index(), edm::EDGetTokenT< edm::DetSetVector< StripDigiSimLink > >.index(), edm::EDGetTokenT< edm::View< reco::GenJet > >.index(), edm::EDGetTokenT< TrajectoryCollection >.index(), edm::EDGetTokenT< EcalTBHodoscopeRecInfo >.index(), edm::EDGetTokenT< edm::ValueMap< reco::SuperClusterRef > >.index(), edm::EDGetTokenT< std::vector< reco::Muon > >.index(), edm::EDGetTokenT< vector< pat::GenericParticle > >.index(), edm::EDGetTokenT< L1MuDTChambThContainer >.index(), edm::EDGetTokenT< edm::edm::View< candidate_type > >.index(), edm::EDGetTokenT< GenFilterInfo >.index(), edm::EDGetTokenT< edm::View< T1 > >.index(), edm::EDGetTokenT< std::vector< pat::Tau > >.index(), edm::EDGetTokenT< reco::TrackRefVector >.index(), edm::EDGetTokenT< std::vector< edm::RefVector< std::vector< T >, T, edm::refhelper::FindUsingAdvance< std::vector< T >, T > > > >.index(), edm::EDGetTokenT< CrossingFrame< SimVertex > >.index(), View< reco::Candidate >.index(), edm::EDGetTokenT< l1t::EtSumBxCollection >.index(), edm::EDGetTokenT< TriggerFilterCollection >.index(), edm::EDGetTokenT< EventWithHistory >.index(), edm::EDGetTokenT< edm::HepMCProduct >.index(), edm::EDGetTokenT< std::vector< PCaloHit > >.index(), edm::EDGetTokenT< edm::View< pat::Electron > >.index(), edm::EDGetTokenT< CrossingFrame< PCaloHit > >.index(), edm::EDGetTokenT< edm::View< reco::reco::Candidate > >.index(), edm::EDGetTokenT< typename edm::View< T > >.index(), edm::EDGetTokenT< JetTracksAssociationCollection >.index(), edm::EDGetTokenT< L1GctEtTotalCollection >.index(), edm::EDGetTokenT< typename edm::View< C > >.index(), edm::EDGetTokenT< L1MuGMTReadoutCollection >.index(), edm::EDGetTokenT< std::map< unsigned int, int > >.index(), edm::EDGetTokenT< typename SingleElementCollectionSelector< reco::TrackCollection, StringCutObjectSelector< reco::Track >, typename::helper::SelectedOutputCollectionTrait< reco::TrackCollection >::type, typename::helper::StoreContainerTrait< typename::helper::SelectedOutputCollectionTrait< reco::TrackCollection >::type >::type, typename::helper::SelectionAdderTrait< reco::TrackCollection, typename::helper::StoreContainerTrait< typename::helper::SelectedOutputCollectionTrait< reco::TrackCollection >::type >::type >::type >::collection >.index(), vector< reco::PFCandidate >.index(), edm::EDGetTokenT< edm::ValueMap< reco::CandidatePtr > >.index(), edm::EDGetTokenT< LHEEventProduct >.index(), edm::EDGetTokenT< L1GlobalTriggerObjectMapRecord >.index(), edm::EDGetTokenT< pat::CompositeCandidateCollection >.index(), edm::EDGetTokenT< SimHits >.index(), edm::EDGetTokenT< edm::View< PATObjType > >.index(), edm::EDGetTokenT< TriggerObjectStandAloneCollection >.index(), edm::EDGetTokenT< OColl >.index(), edm::EDGetTokenT< EtSumBxCollection >.index(), edm::EDGetTokenT< std::vector< pat::pat::MET > >.index(), edm::EDGetTokenT< CandMatchMap >.index(), edm::EDGetTokenT< StGenEvent >.index(), edm::EDGetTokenT< reco::IsoDepositMap >.index(), edm::EDGetTokenT< TrackingRegionsSeedingLayerSets >.index(), edm::EDGetTokenT< std::vector< reco::ShallowTagInfo > >.index(), vector< reco::PFCandidateRef >.index(), edm::EDGetTokenT< std::vector< LHS > >.index(), edm::EDGetTokenT< InputCollection >.index(), edm::EDGetTokenT< reco::CompositeCandidateCollection >.index(), edm::EDGetTokenT< L1GctHFRingEtSumsCollection >.index(), edm::EDGetTokenT< EnergyMap >.index(), edm::EDGetTokenT< edm::EventTime >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PhotonRef > >.index(), edm::EDGetTokenT< unsigned int >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemTimingRecHit > >.index(), edm::EDGetTokenT< pat::PATTauDiscriminator >.index(), edm::EDGetTokenT< TH3F >.index(), edm::EDGetTokenT< std::vector< reco::CaloJet > >.index(), edm::EDGetTokenT< std::map< int, edm::DetSetVector< CTPPSPixelRecHit > > >.index(), edm::EDGetTokenT< edm::View< T > >.index(), edm::EDGetTokenT< typename Selector::collection >.index(), edm::EDGetTokenT< reco::CandidateView >.index(), edm::EDGetTokenT< edm::ConditionsInRunBlock >.index(), edm::EDGetTokenT< SiPixelClusterShapeCache >.index(), edm::EDGetTokenT< reco::CandidateCollection >.index(), edm::EDGetTokenT< reco::PhotonCollection >.index(), edm::EDGetTokenT< edm::SimVertexContainer >.index(), edm::EDGetTokenT< TsosVectorCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonCosmicCompatibility > >.index(), EDGetTokenT< PFCandToVertexAssMap >.index(), edm::EDGetTokenT< LHERunInfoProduct >.index(), edm::EDGetTokenT< edm::View< reco::MET > >.index(), edm::EDGetTokenT< HcalTBTriggerData >.index(), edm::EDGetTokenT< HcalTBEventPosition >.index(), edm::EDGetTokenT< TtGenEvent >.index(), edm::EDGetTokenT< bool >.index(), edm::EDGetTokenT< L1MuDTChambPhContainer >.index(), edm::EDGetTokenT< reco::ConversionCollection >.index(), edm::EDGetTokenT< edm::View< reco::PFCandidate > >.index(), edm::EDGetTokenT< std::vector< reco::PFCandidate > >.index(), edm::EDGetTokenT< reco::SimToRecoCollection >.index(), edm::EDGetTokenT< TriggerResults >.index(), edm::EDGetTokenT< EBDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< reco::JPTJetCollection >.index(), edm::EDGetTokenT< reco::PFDisplacedVertexCandidateCollection >.index(), View< I >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< pat::PackedCandidate > > >.index(), edm::EDGetTokenT< RecoElectrons >.index(), edm::EDGetTokenT< SiPixelDetectorStatus >.index(), View< C >.index(), edm::EDGetTokenT< TTClusterAssociationMap< T > >.index(), edm::EDGetTokenT< HOCalibVariableCollection >.index(), edm::EDGetTokenT< reco::JetCorrector >.index(), edm::EDGetTokenT< reco::PFTauCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HORecHit, edm::StrictWeakOrdering< HORecHit > > >.index(), edm::EDGetTokenT< edm::View< reco::PFCluster > >.index(), edm::EDGetTokenT< reco::ClusterRemovalInfo >.index(), EDGetTokenT< TrackToVertexAssMap >.index(), edm::EDGetTokenT< VarCollection >.index(), edm::EDGetTokenT< APVCyclePhaseCollection >.index(), edm::EDGetTokenT< TriggerConditionCollection >.index(), EDGetTokenT< am_t >.index(), edm::EDGetTokenT< edm::ConditionsInLumiBlock >.index(), edm::EDGetTokenT< l1extra::L1EmParticleCollection >.index(), edm::EDGetTokenT< reco::PFJetCollection >.index(), EDGetTokenT< av_t >.index(), edm::EDGetTokenT< edm::TriggerResults >.index(), edm::EDGetTokenT< ESDigiCollection >.index(), edm::EDGetTokenT< pat::ElectronCollection >.index(), edm::EDGetTokenT< L1CaloEmCollection >.index(), edm::EDGetTokenT< TYPE >.index(), edm::EDGetTokenT< std::vector< pat::Photon > >.index(), edm::EDGetTokenT< typename edm::View< I > >.index(), edm::EDGetTokenT< L1GctEtHadCollection >.index(), edm::EDGetTokenT< reco::PhotonCoreCollection >.index(), edm::EDGetTokenT< std::vector< std::vector< int > > >.index(), edm::EDGetTokenT< std::vector< pat::pat::TriggerObjectStandAlone > >.index(), edm::EDGetTokenT< BXVector< l1t::Jet > >.index(), edm::EDGetTokenT< SimHitTPAssociationProducer::SimHitTPAssociationList >.index(), edm::EDGetTokenT< SortedCollection< CaloTower > >.index(), edm::EDGetTokenT< TrackingVertexCollection >.index(), edm::EDGetTokenT< CSCDCCStatusDigiCollection >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< SiStripDigi > >.index(), edm::EDGetTokenT< reco::PFRecTrackCollection >.index(), edm::EDGetTokenT< CSCDDUStatusDigiCollection >.index(), edm::EDGetTokenT< PFCandidateCollection >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTCluster< edm::Ref > > >.index(), edm::EDGetTokenT< reco::TrackToGenParticleAssociator >.index(), edm::EDGetTokenT< reco::VertexCompositeCandidateCollection >.index(), edm::EDGetTokenT< reco::PFTauDiscriminator >.index(), edm::EDGetTokenT< reco::SoftLeptonTagInfoCollection >.index(), edm::EDGetTokenT< reco::DeDxDataValueMap >.index(), edm::EDGetTokenT< reco::TrackCaloClusterPtrAssociation >.index(), edm::EDGetTokenT< std::vector< L1MuKBMTCombinedStub > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelDigi > >.index(), edm::EDGetTokenT< BXVector< l1t::EGamma > >.index(), edm::EDGetTokenT< TColl >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelCalibDigiError > >.index(), edm::EDGetTokenT< TauBxCollection >.index(), edm::EDGetTokenT< std::vector< reco::ForwardProton > >.index(), edm::EDGetTokenT< typename SingleElementCollectionSelector< InputCollection, Selector, reco::CandidateCollection, StoreContainer, RefAdder >::collection >.index(), EDGetTokenT< SiStripMatchedRecHit2DCollection >.index(), edm::EDGetTokenT< l1extra::L1HFRingsCollection >.index(), edm::EDGetTokenT< GenEventInfoProduct >.index(), edm::EDGetTokenT< std::vector< pat::Muon > >.index(), vector< reco::Track >.index(), edm::EDGetTokenT< std::vector< CaloParticle > >.index(), vector< reco::Photon >.index(), edm::EDGetTokenT< reco::GsfElectronCollection >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< int >::type >.index(), edm::EDGetTokenT< edm::View< pat::Photon > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonShower > >.index(), edm::EDGetTokenT< PATPrimitiveCollection >.index(), edm::EDGetTokenT< l1t::CaloClusterBxCollection >.index(), edm::EDGetTokenT< edm::EDCollection >.index(), edm::EDGetTokenT< DTRecHitCollection >.index(), edm::EDGetTokenT< std::vector< SimVertex > >.index(), edm::EDGetTokenT< reco::EcalHaloData >.index(), edm::EDGetTokenT< edm::View< reco::BasicJet > >.index(), edm::EDGetTokenT< PixelFitter >.index(), edm::EDGetTokenT< MuonDigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelCalibDigi > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTCluster< T > > >.index(), edm::EDGetTokenT< reco::PFV0Collection >.index(), edm::EDGetTokenT< HcalUnpackerReport >.index(), edm::EDGetTokenT< DcsStatusCollection >.index(), edm::EDGetTokenT< edm::Association< reco::TrackExtraCollection > >.index(), edm::EDGetTokenT< std::vector< CandType > >.index(), edm::EDGetTokenT< TagCollType >.index(), edm::EDGetTokenT< std::vector< reco::TrackExtrapolation > >.index(), edm::EDGetTokenT< ME0DigiPreRecoCollection >.index(), edm::EDGetTokenT< LumiInfo >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< float >::type >.index(), edm::EDGetTokenT< TriggerAlgorithmCollection >.index(), edm::EDGetTokenT< L1MuGMTCandCollection >.index(), edm::EDGetTokenT< std::vector< CTPPSLocalTrackLite > >.index(), edm::EDGetTokenT< patMETCollection >.index(), edm::EDGetTokenT< reco::METCollection >.index(), edm::EDGetTokenT< SimHitTPAssociationList >.index(), edm::EDGetTokenT< edm::View< pat::Tau > >.index(), edm::EDGetTokenT< edm::View< reco::CaloJet > >.index(), edm::EDGetTokenT< reco::GenToRecoCollection >.index(), edm::EDGetTokenT< edm::View< reco::PFMET > >.index(), edm::EDGetTokenT< Density >.index(), edm::EDGetTokenT< std::vector< IPTI > >.index(), edm::EDGetTokenT< std::vector< TrackingParticle > >.index(), edm::EDGetTokenT< Collection >.index(), edm::EDGetTokenT< BXVector >.index(), edm::EDGetTokenT< edm::ConditionsInEventBlock >.index(), edm::EDGetTokenT< edm::AssociationVector< PFTauRefProd, std::vector< std::vector< reco::VertexRef > > > >.index(), edm::EDGetTokenT< reco::PFCandidateCollection >.index(), edm::EDGetTokenT< edm::PCaloHitContainer >.index(), edm::EDGetTokenT< edm::View< reco::GenMET > >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelRawDataError > >.index(), edm::EDGetTokenT< trigger::TriggerEventWithRefs >.index(), edm::EDGetTokenT< edm::View< T2 > >.index(), edm::EDGetTokenT< edm::AssociationVector< PFTauRefProd, std::vector< reco::VertexRef > > >.index(), edm::EDGetTokenT< edm::SortedCollection< Digi > >.index(), edm::EDGetTokenT< edm::View< reco::PFJet > >.index(), edm::EDGetTokenT< edm::Association< std::vector< pat::pat::PackedGenParticle > > >.index(), edm::EDGetTokenT< BeamSpotOnlineCollection >.index(), edm::EDGetTokenT< TrajectorySeedCollection >.index(), edm::EDGetTokenT< std::vector< TrackingVertex > >.index(), edm::EDGetTokenT< reco::CaloMuonCollection >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< reco::PFCandidate > > >.index(), edm::EDGetTokenT< std::vector< unsigned char > >.index(), edm::EDGetTokenT< reco::PreshowerClusterCollection >.index(), edm::EDGetTokenT< reco::DeDxHitInfoAss >.index(), edm::EDGetTokenT< TTStubAssociationMap< T > >.index(), edm::EDGetTokenT< pat::JetCollection >.index(), edm::EDGetTokenT< L1GctEtHad >.index(), edm::EDGetTokenT< edm::View< ParticleType > >.index(), edm::EDGetTokenT< L1AcceptBunchCrossingCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFJet > >.index(), edm::EDGetTokenT< HTXS::HiggsClassification >.index(), edm::EDGetTokenT< reco::CaloTauCollection >.index(), edm::EDGetTokenT< reco::HcalNoiseRBXCollection >.index(), edm::EDGetTokenT< MuonCollection >.index(), edm::EDGetTokenT< reco::TrackExtraCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PFCandidatePtr > >.index(), edm::EDGetTokenT< std::vector< edm::RefVector< std::vector< jetType >, jetType, edm::refhelper::FindUsingAdvance< std::vector< jetType >, jetType > > > >.index(), edm::EDGetTokenT< l1t::RegionalMuonCandBxCollection >.index(), edm::EDGetTokenT< reco::Vertex >.index(), edm::EDGetTokenT< reco::PattRecoTree< fftjetcms::Real, reco::PattRecoPeak< fftjetcms::Real > > >.index(), edm::EDGetTokenT< std::set< EBDetId > >.index(), edm::EDGetTokenT< std::vector< TrackClass > >.index(), edm::EDGetTokenT< edm::View< reco::ConversionTrack > >.index(), edm::EDGetTokenT< TriggerEventWithRefs >.index(), edm::EDGetTokenT< std::vector< T > >.index(), edm::EDGetTokenT< reco::JetFlavourInfoMatchingCollection >.index(), edm::EDGetTokenT< reco::VertexCompositePtrCandidateCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFCluster > >.index(), edm::EDGetTokenT< l1t::ObjectRefPairBxCollection< T > >.index(), CSCAnodeData2006.index(), edm::EDGetTokenT< reco::GenParticleCollection >.index(), edm::EDGetTokenT< uint32_t >.index(), edm::EDGetTokenT< std::vector< double > >.index(), edm::EDGetTokenT< HepMCProduct >.index(), edm::EDGetTokenT< edm::View< reco::Candidate > >.index(), edm::EDGetTokenT< CTPPSLocalTrackLiteCollection >.index(), edm::EDGetTokenT< std::vector< pat::PackedCandidate > >.index(), edm::EDGetTokenT< CSCCLCTDigiCollection >.index(), edm::EDGetTokenT< HcalQIE10DigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< CSCStripDigiCollection >.index(), edm::EDGetTokenT< TrackCollection >.index(), edm::EDGetTokenT< MEtoEDM >.index(), edm::EDGetTokenT< L1GctJetCountsCollection >.index(), edm::EDGetTokenT< std::vector< Trajectory > >.index(), edm::EDGetTokenT< GenLumiInfoHeader >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripCluster > >.index(), edm::EDGetTokenT< edm::DetSetVector< PixelDigi > >.index(), edm::EDGetTokenT< reco::JetView >.index(), edm::EDGetTokenT< std::vector< reco::PFMET > >.index(), edm::EDGetTokenT< ParticleCollection >.index(), edm::EDGetTokenT< EBDigiCollection >.index(), edm::EDGetTokenT< DTLocalTriggerCollection >.index(), edm::EDGetTokenT< MTDTrackingRecHit >.index(), edm::EDGetTokenT< DTRecSegment4DCollection >.index(), edm::EDGetTokenT< SeedingLayerSetsHits >.index(), edm::EDGetTokenT< CrossingFrame< PSimHit > >.index(), edm::EDGetTokenT< std::vector< reco::Photon > >.index(), EDGetTokenT< VertexToPFCandAssMap >.index(), edm::EDGetTokenT< std::vector< bool > >.index(), edm::EDGetTokenT< std::map< uint, std::vector< SiStripCluster > > >.index(), edm::EDGetTokenT< RPCRawSynchro::ProdItem >.index(), edm::EDGetTokenT< LVColl >.index(), edm::EDGetTokenT< std::vector< math::PtEtaPhiMLorentzVector > >.index(), edm::EDGetTokenT< l1t::ObjectRefBxCollection< T > >.index(), edm::EDGetTokenT< PGlobalSimHit >.index(), edm::EDGetTokenT< ValueMap< float > >.index(), edm::EDGetTokenT< L1GlobalTriggerRecord >.index(), edm::EDGetTokenT< reco::ElectronIsolationMap >.index(), edm::EDGetTokenT< edm::View< reco::CaloMET > >.index(), edm::EDGetTokenT< std::vector< reco::FFTAnyJet< reco::GenJet > > >.index(), edm::EDGetTokenT< edm::ValueMap< Bool_t > >.index(), edm::EDGetTokenT< reco::GlobalHaloData >.index(), edm::EDGetTokenT< DigiCollection >.index(), edm::EDGetTokenT< std::vector< reco::edm::Ref > >.index(), edm::EDGetTokenT< HBHEDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< RPCDigiSimLink > >.index(), edm::EDGetTokenT< ME0PadDigiCollection >.index(), edm::EDGetTokenT< DCSRecord >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHERecHit, edm::StrictWeakOrdering< HBHERecHit > > >.index(), edm::EDGetTokenT< L1CSCStatusDigiCollection >.index(), edm::EDGetTokenT< PGlobalRecHit >.index(), edm::EDGetTokenT< L1GtTechnicalTriggerRecord >.index(), edm::EDGetTokenT< reco::PFDisplacedVertexCollection >.index(), edm::EDGetTokenT< edm::OwnVector< TrackingRegion > >.index(), edm::EDGetTokenT< edm::ValueMap< unsigned int > >.index(), edm::EDGetTokenT< l1t::BXVector >.index(), edm::EDGetTokenT< reco::PFDisplacedTrackerVertexCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PFCandidateRef > >.index(), edm::EDGetTokenT< EEDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< vector< pat::Muon > >.index(), edm::EDGetTokenT< ClusterTPAssociation >.index(), edm::EDGetTokenT< reco::PFConversionCollection >.index(), edm::EDGetTokenT< PixelTrackFilter >.index(), edm::EDGetTokenT< reco::GsfElectronCoreCollection >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< SiStripRawDigi > >.index(), edm::EDGetTokenT< HcalTBTiming >.index(), edm::EDGetTokenT< LTCDigiCollection >.index(), View< Object >.index(), edm::EDGetTokenT< SimHitAssoc >.index(), edm::EDGetTokenT< edm::View< reco::Photon > >.index(), edm::EDGetTokenT< L1GctJetCandCollection >.index(), edm::EDGetTokenT< reco::FFTJetPileupSummary >.index(), edm::EDGetTokenT< TH2D >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > >.index(), edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > >.index(), edm::EDGetTokenT< CandidateView >.index(), edm::EDGetTokenT< edm::ContainerMask >.index(), edm::EDGetTokenT< edm::Association< reco::VertexCollection > >.index(), edm::EDGetTokenT< reco::reco::JetCorrector >.index(), edm::EDGetTokenT< CPPFDigiCollection >.index(), edm::EDGetTokenT< reco::CandDoubleAssociations >.index(), edm::EDGetTokenT< L1GctHtMissCollection >.index(), edm::EDGetTokenT< l1extra::L1JetParticleCollection >.index(), edm::EDGetTokenT< edm::View< reco::Electron > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > >.index(), edm::EDGetTokenT< T1 >.index(), edm::EDGetTokenT< std::vector< pat::pat::PackedCandidate > >.index(), edm::EDGetTokenT< typename SingleElementCollectionSelector< InputCollection, Selector, OutputCollection, StoreContainer, RefAdder >::collection >.index(), edm::EDGetTokenT< edm::edm::TriggerResults >.index(), edm::EDGetTokenT< reco::MuonTimeExtraMap >.index(), edm::EDGetTokenT< CrossingFrame< T > >.index(), edm::EDGetTokenT< CrossingFrame< HepMCProduct > >.index(), edm::EDGetTokenT< CTPPSRecord >.index(), edm::EDGetTokenT< edm::View< Object > >.index(), edm::EDGetTokenT< pat::GenericParticleCollection >.index(), edm::EDGetTokenT< edmNew::DetSetVector >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripProcessedRawDigi > >.index(), edm::EDGetTokenT< BXVector< l1t::EtSum > >.index(), edm::EDGetTokenT< InputContainer >.index(), edm::EDGetTokenT< MicroGMTConfiguration::InputCollection >.index(), edm::EDGetTokenT< edm::AssociationMap< edm::OneToOne< reco::JetView, reco::JetView > > >.index(), edm::EDGetTokenT< GEMPadDigiCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HFDataFrame > >.index(), edm::EDGetTokenT< std::vector< jetType > >.index(), edm::EDGetTokenT< C1 >.index(), edm::EDGetTokenT< CorrMETData >.index(), edm::EDGetTokenT< reco::ForwardProtonCollection >.index(), edm::EDGetTokenT< std::vector< pat::Electron > >.index(), edm::EDGetTokenT< EMTFTrackCollection >.index(), edm::EDGetTokenT< Product >.index(), edm::EDGetTokenT< reco::TrackToTrackMap >.index(), edm::EDGetTokenT< std::vector< PileupSummaryInfo > >.index(), edm::EDGetTokenT< edm::edm::View< T > >.index(), edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > >.index(), edm::EDGetTokenT< l1t::TauBxCollection >.index(), edm::EDGetTokenT< std::map< int, edm::DetSetVector< TotemRPRecHit > > >.index(), edm::EDGetTokenT< reco::GsfTrackCollection >.index(), edm::EDGetTokenT< PFCollection >.index(), edm::EDGetTokenT< L1CaloRegionCollection >.index(), edm::EDGetTokenT< reco::JetFloatAssociation::Container >.index(), edm::EDGetTokenT< reco::PFJetChargedHadronAssociation >.index(), edm::EDGetTokenT< edm::View< reco::BaseTagInfo > >.index(), View< T >.index(), edm::EDGetTokenT< edm::View< reco::pat::CompositeCandidate > >.index(), edm::EDGetTokenT< l1extra::L1MuonParticleCollection >.index(), edm::EDGetTokenT< edm::View< reco::JPTJet > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonQuality > >.index(), edm::EDGetTokenT< std::vector< SVTag > >.index(), edm::EDGetTokenT< EcalListOfFEDS >.index(), DetSetVector< SiStripCluster >.index(), edm::EDGetTokenT< FileBlobCollection >.index(), edm::EDGetTokenT< std::vector< TotemFEDInfo > >.index(), edm::EDGetTokenT< HFDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::GenParticle > > >.index(), edm::EDGetTokenT< RegionalMuonCandBxCollection >.index(), edm::EDGetTokenT< reco::edm::ValueMap >.index(), edm::EDGetTokenT< TTStubAssociationMap< edm::Ref > >.index(), edm::EDGetTokenT< std::vector< reco::PreId > >.index(), edm::EDGetTokenT< QualityMaskCollection >.index(), edm::EDGetTokenT< IntermediateHitDoublets >.index(), edm::EDGetTokenT< RPCRawDataCounts >.index(), edm::EDGetTokenT< L1DataEmulRecord >.index(), edm::EDGetTokenT< EcalTBEventHeader >.index(), edm::EDGetTokenT< L1MuRegionalCandCollection >.index(), edm::EDGetTokenT< CTPPSFastRecHitContainer >.index(), edm::EDGetTokenT< edm::AssociationVector >.index(), edm::EDGetTokenT< edm::View< reco::VertexCompositePtrCandidate > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< Phase2TrackerCluster1D > >.index(), edm::EDGetTokenT< CandidateCollection >.index(), edm::EDGetTokenT< reco::JetTracksAssociation::Container >.index(), edm::EDGetTokenT< susybsm::HSCParticleCollection >.index(), edm::EDGetTokenT< edm::View< reco::CaloCluster > >.index(), edm::EDGetTokenT< RecoMuons >.index(), edm::EDGetTokenT< std::vector< pat::Particle > >.index(), edm::EDGetTokenT< View< Muon > >.index(), edm::EDGetTokenT< EMTFHitCollection >.index(), edm::EDGetTokenT< std::vector< MaterialAccountingTrack > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondLocalTrack > >.index(), edm::EDGetTokenT< CSCCLCTPreTriggerCollection >.index(), edm::EDGetTokenT< L1GctHFBitCountsCollection >.index(), edm::EDGetTokenT< edm::ValueMap< pat::pat::VertexAssociation > >.index(), edm::EDGetTokenT< CrossingFrame< edm::HepMCProduct > >.index(), edm::EDGetTokenT< CSCDCCFormatStatusDigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< PixelDigiSimLink > >.index(), edm::EDGetTokenT< HcalDataFrameContainer< QIE11DataFrame > >.index(), edm::EDGetTokenT< reco::ConversionTrackCollection >.index(), edm::EDGetTokenT< vector< int > >.index(), edm::EDGetTokenT< reco::RecoToGenCollection >.index(), edm::EDGetTokenT< std::set< EcalTrigTowerDetId > >.index(), edm::EDGetTokenT< reco::reco::PFTauDiscriminator >.index(), edm::EDGetTokenT< std::vector< reco::CaloMuon > >.index(), edm::EDGetTokenT< std::vector< reco::CompositeCandidate > >.index(), edm::EDGetTokenT< l1t::EMTFTrackCollection >.index(), edm::EDGetTokenT< typename SingleElementCollectionRefSelector< InputType, Selector, OutputCollection, StoreContainer, RefAdder >::collection >.index(), edm::EDGetTokenT< edm::View< pat::Jet > >.index(), edm::EDGetTokenT< std::vector< reco::CaloMET > >.index(), edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs >.index(), edm::EDGetTokenT< TriggerPathCollection >.index(), edm::EDGetTokenT< edm::ValueMap >.index(), edm::EDGetTokenT< edm::View >.index(), edm::EDGetTokenT< L1GlobalTriggerEvmReadoutRecord >.index(), edm::EDGetTokenT< edm::View< reco::pat::MET > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiPixelCluster > >.index(), edm::EDGetTokenT< CrossingFrame< SimTrack > >.index(), edm::EDGetTokenT< TProd >.index(), edm::EDGetTokenT< reco::Centrality >.index(), edm::EDGetTokenT< std::vector< reco::HGCalMultiCluster > >.index(), edm::EDGetTokenT< edm::ValueMap< StoredPileupJetIdentifier > >.index(), edm::EDGetTokenT< edm::View< reco::RecoChargedRefCandidate > >.index(), edm::EDGetTokenT< ESDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< SiStripEventSummary >.index(), edm::EDGetTokenT< edm::LHCTransportLinkContainer >.index(), edm::EDGetTokenT< std::vector< float > >.index(), edm::EDGetTokenT< edm::View< VTX > >.index(), edm::EDGetTokenT< View< Jet > >.index(), edm::EDGetTokenT< HODigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< edm::Association< reco::TrackCollection > >.index(), edm::EDGetTokenT< edm::View< PATObjectType > >.index(), edm::EDGetTokenT< reco::PattRecoTree >.index(), edm::EDGetTokenT< reco::MuonCollection >.index(), edm::EDGetTokenT< GEMPadDigiClusterCollection >.index(), edm::EDGetTokenT< CSCRPCDigiCollection >.index(), edm::EDGetTokenT< TkFittedLasBeamCollection >.index(), edm::EDGetTokenT< ME0DigiCollection >.index(), edm::EDGetTokenT< HcalDataFrameContainer< QIE10DataFrame > >.index(), edm::EDGetTokenT< std::vector< BPHTrackReference::candidate > >.index(), edm::EDGetTokenT< std::vector< L1MuRegionalCand > >.index(), edm::EDGetTokenT< TauCollection >.index(), edm::EDGetTokenT< std::vector< std::string > >.index(), edm::EDGetTokenT< PEcalTBInfo >.index(), edm::EDGetTokenT< sistrip::sistrip::SpyDigiConverter::DSVRawDigis >.index(), edm::EDGetTokenT< edm::SortedCollection< EcalRecHit, edm::StrictWeakOrdering< EcalRecHit > > >.index(), edm::EDGetTokenT< MeasurementTrackerEvent >.index(), edm::EDGetTokenT< reco::CaloMETCollection >.index(), edm::EDGetTokenT< std::vector< pat::CompositeCandidate > >.index(), edm::EDGetTokenT< View< reco::PFCandidate > >.index(), edm::EDGetTokenT< edm::SimTrackContainer >.index(), edm::EDGetTokenT< edm::ValueMap< float > >.index(), edm::EDGetTokenT< CaloParticleCollection >.index(), EDGetTokenT< IsoMap >.index(), edm::EDGetTokenT< reco::DiscretizedEnergyFlow >.index(), edm::EDGetTokenT< reco::GenMETCollection >.index(), edm::EDGetTokenT< GenRunInfoProduct >.index(), edm::EDGetTokenT< std::vector< math::XYZTLorentzVector > >.index(), edm::EDGetTokenT< CSCRecHit2DCollection >.index(), edm::EDGetTokenT< reco::RecoToSimCollection >.index(), edm::EDGetTokenT< TagInfoCollection >.index(), edm::EDGetTokenT< CastorTowerCollection >.index(), edm::EDGetTokenT< JetCollection >.index(), edm::EDGetTokenT< edm::ValueMap< double > >.index(), edm::EDGetTokenT< HcalNoiseSummary >.index(), edm::EDGetTokenT< uint >.index(), edm::EDGetTokenT< edm::DetSetVector< Phase2TrackerDigi > >.index(), edm::EDGetTokenT< PHGCSimAccumulator >.index(), edm::EDGetTokenT< SimParticles >.index(), edm::EDGetTokenT< edm::ValueMap< reco::CaloClusterPtr > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPRecHit > >.index(), edm::EDGetTokenT< LumiDetails >.index(), edm::EDGetTokenT< std::vector< unsigned int > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::DeDxData > >.index(), edm::EDGetTokenT< std::vector< reco::SoftLeptonTagInfo > >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< double >::type >.index(), edm::EDGetTokenT< edm::View< reco::GenParticle > >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > >.index(), edm::EDGetTokenT< edm::View< pat::pat::Tau > >.index(), edm::EDGetTokenT< FastTrackerRecHitRefCollection >.index(), edm::EDGetTokenT< PileupMixingContent >.index(), edm::EDGetTokenT< edm::ValueMap< reco::GsfElectronRef > >.index(), edm::EDGetTokenT< std::vector< SimCluster > >.index(), edm::EDGetTokenT< reco::MuonToTrackingParticleAssociator >.index(), edm::EDGetTokenT< View< Track > >.index(), edm::EDGetTokenT< edm::edm::ValueMap< selection_type > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiPixelRecHit > >.index(), edm::EDGetTokenT< reco::GsfPFRecTrackCollection >.index(), edm::EDGetTokenT< l1t::JetBxCollection >.index(), edm::EDGetTokenT< PCrossingFrame< SimTrack > >.index(), edm::EDGetTokenT< std::vector< PSimHit > >.index(), edm::EDGetTokenT< std::vector< reco::BasicCluster > >.index(), edm::EDGetTokenT< reco::BeamSpot >.index(), edm::EDGetTokenT< reco::TrackCollection >.index(), edm::EDGetTokenT< trigger::TriggerEvent >.index(), edm::EDGetTokenT< reco::BasicJetCollection >.index(), edm::EDGetTokenT< CSCCorrelatedLCTDigiCollection >.index(), edm::EDGetTokenT< CSCSegmentCollection >.index(), edm::EDGetTokenT< MicroGMTConfiguration::CaloInputCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFTau > >.index(), edm::EDGetTokenT< pat::PackedCandidateCollection >.index(), EDGetTokenT< PFView >.index(), edm::EDGetTokenT< L1GctEtMissCollection >.index(), edm::EDGetTokenT< CSCTriggerContainer< csctf::TrackStub > >.index(), edm::EDGetTokenT< LumiScalersCollection >.index(), edm::EDGetTokenT< PGlobalDigi >.index(), edm::EDGetTokenT< TauDiscriminator >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemTimingDigi > >.index(), edm::EDGetTokenT< reco::VertexToTrackingVertexAssociator >.index(), edm::EDGetTokenT< l1t::CaloTowerBxCollection >.index(), edm::EDGetTokenT< BeamSpot >.index(), edm::EDGetTokenT< reco::JetMatchedPartonsCollection >.index(), edm::EDGetTokenT< reco::CandMatchMap >.index(), edm::EDGetTokenT< TrackingParticleCollection >.index(), edm::EDGetTokenT< FastTrackerRecHitCombinationCollection >.index(), edm::EDGetTokenT< reco::JetPiZeroAssociation >.index(), edm::EDGetTokenT< reco::MuonToMuonMap >.index(), edm::EDGetTokenT< reco::BasicClusterCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::VoronoiBackground > >.index(), edm::EDGetTokenT< TopFwdPtrCollection >.index(), edm::EDGetTokenT< std::vector< SimTrack > >.index(), edm::EDGetTokenT< LumiSummary >.index(), edm::EDGetTokenT< pfMETCollection >.index(), edm::EDGetTokenT< LeptonCollection >.index(), edm::EDGetTokenT< SimTrackContainer >.index(), edm::EDGetTokenT< TtSemiLeptonicEvent >.index(), edm::EDGetTokenT< HcalUMNioDigi >.index(), edm::EDGetTokenT< ME0PadDigiClusterCollection >.index(), edm::EDGetTokenT< vector< reco::Muon > >.index(), edm::EDGetTokenT< reco::HcalHaloData >.index(), edm::EDGetTokenT< reco::CSCHaloData >.index(), edm::EDGetTokenT< reco::RecoEcalCandidateCollection >.index(), edm::EDGetTokenT< L1MuDTTrackContainer >.index(), edm::EDGetTokenT< edm::View< reco::CompositeCandidate > >.index(), edm::EDGetTokenT< CSCWireDigiCollection >.index(), edm::EDGetTokenT< ProbeCollType >.index(), edm::EDGetTokenT< DTDDUCollection >.index(), edm::EDGetTokenT< GlobalHaloData >.index(), edm::EDGetTokenT< reco::RecoChargedCandidateIsolationMap >.index(), edm::EDGetTokenT< L1CSCTrackCollection >.index(), edm::EDGetTokenT< reco::WMuNuCandidateCollection >.index(), edm::EDGetTokenT< L1GctJetCounts >.index(), edm::EDGetTokenT< GenParticleMatch >.index(), edm::EDGetTokenT< std::vector< reco::SuperCluster > >.index(), edm::EDGetTokenT< std::vector< unsigned short > >.index(), edm::EDGetTokenT< pat::MuonCollection >.index(), ValueMap< bool >.index(), edm::EDGetTokenT< T >.index(), edm::EDGetTokenT< VertexCollection >.index(), edm::EDGetTokenT< std::vector< int > >.index(), edm::EDGetTokenT< EcalTBTDCRecInfo >.index(), edm::EDGetTokenT< ME0SegmentCollection >.index(), edm::EDGetTokenT< std::vector< reco::CandSecondaryVertexTagInfo > >.index(), edm::EDGetTokenT< reco::JetTracksAssociationCollection >.index(), edm::EDGetTokenT< std::vector< reco::Track > >.index(), edm::EDGetTokenT< C2 >.index(), edm::EDGetTokenT< double >.index(), edm::EDGetTokenT< reco::JetTagCollection >.index(), edm::EDGetTokenT< edm::PSimHitContainer >.index(), edm::EDGetTokenT< edm::SortedCollection >.index(), edm::EDGetTokenT< edm::View< reco::Vertex > >.index(), edm::EDGetTokenT< edm::AssociationMap >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelLocalTrack > >.index(), edm::EDGetTokenT< reco::CaloJetCollection >.index(), edm::EDGetTokenT< reco::PFRecHitCollection >.index(), EDGetTokenT< HFDigiCollection >.index(), ValueMap< float >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonSimInfo > >.index(), edm::EDGetTokenT< vector< reco::PFJet > >.index(), DetSetVector< SiStripProcessedRawDigi >.index(), edm::EDGetTokenT< reco::edm::RefVector >.index(), vector< reco::GsfElectron >.index(), EDGetTokenT< T >.index(), edm::EDGetTokenT< DigiSimLinkCollection >.index(), edm::EDGetTokenT< reco::SuperClusterCollection >.index(), EDGetTokenT< association_t >.index(), View< reco::Track >.index(), DetSetVector< SiStripRawDigi >.index(), EDGetTokenT< DetIdCollection >.index(), EDGetTokenT< AliClusterValueMap >.index(), EDGetTokenT< QIE10DigiCollection >.index(), vector< unsigned short >.index(), edm::EDGetTokenT< reco::IsolatedPixelTrackCandidateCollection >.index(), edm::EDGetTokenT< HcalQIE11DigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< Level1TriggerScalersCollection >.index(), vector< unsigned char >.index(), edm::EDGetTokenT< GenParticleCollection >.index(), View< reco::Jet >.index(), vector< double >.index(), edm::EDGetTokenT< std::string >.index(), edm::EDGetTokenT< edm::RefVector >.index(), edm::EDGetTokenT< pat::TriggerEvent >.index(), vector< float >.index(), edm::EDGetTokenT< edm::ValueMap< bool > >.index(), vector< unsigned int >.index(), EDGetTokenT< PixelFEDChannelCollection > tk.index(), edm::EDGetTokenT< TriggerObjectCollection >.index(), edm::EDGetTokenT< std::vector< reco::GenParticle > >.index(), edm::EDGetTokenT< edm::View< reco::Jet > >.index(), EDGetTokenT< VertexToTrackAssMap >.index(), edm::EDGetTokenT< l1t::EGammaBxCollection >.index(), edm::EDGetTokenT< l1t::MuonBxCollection >.index(), DetSetVector< SiPixelCalibDigiError >.index(), EDGetTokenT< SiPixelRecHitCollection >.index(), edm::EDGetTokenT< std::vector< uint32_t > >.index(), edm::EDGetTokenT< reco::MuonTrackLinksCollection >.index(), edm::EDGetTokenT< edm::View< pat::pat::Muon > >.index(), edm::EDGetTokenT< ME0RecHitCollection >.index(), edm::EDGetTokenT< pat::TauCollection >.index(), DetSetVector< SiPixelCluster >.index(), EDGetTokenT< HODigiCollection >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::Muon > > >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< PixelDigi > >.index(), edm::EDGetTokenT< GlobalObjectMapRecord >.index(), edm::EDGetTokenT< GEMSegmentCollection >.index(), edm::EDGetTokenT< GEMRecHitCollection >.index(), FwdPtr< T >.index(), vector< reco::Muon >.index(), edm::EDGetTokenT< HitCollection >.index(), edm::EDGetTokenT< reco::GenParticleMatch >.index(), EDGetTokenT< EBRecHitCollection >.index(), EDGetTokenT< BXVector< GlobalAlgBlk >.index(), edm::EDGetTokenT< ME0MuonCollection >.index(), edm::EDGetTokenT< SVCollection >.index(), EDGetTokenT< HFPreRecHitCollection >.index(), edm::EDGetTokenT< std::vector< edm::edm::FwdPtr< T > > >.index(), EDGetTokenT< HBHEDigiCollection >.index(), EDGetTokenT< EERecHitCollection >.index(), StrictWeakOrdering< HORecHit >.index(), edm::EDGetTokenT< RPCRecHitCollection >.index(), edm::EDGetTokenT< ESListOfFEDS >.index(), edm::EDGetTokenT< ClusterSummary >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonMETCorrectionData > >.index(), edm::EDGetTokenT< JetBxCollection >.index(), edm::EDGetTokenT< ZDCDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< HcalDataFrameContainer >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTStub< edm::Ref > > >.index(), edm::EDGetTokenT< edm::Association< reco::PFCandidateCollection > >.index(), edm::EDGetTokenT< ErrorList >.index(), edm::EDGetTokenT< reco::PixelClusterCounts >.index(), edm::EDGetTokenT< std::vector< reco::GsfTrack > >.index(), edm::EDGetTokenT< RPCDigiCollection >.index(), ValueMap< reco::PFCandidateRef >.index(), edm::EDGetTokenT< std::vector< reco::GenJet > >.index(), edm::EDGetTokenT< TCDSRecord >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHEDataFrame > >.index(), StrictWeakOrdering< HBHERecHit >.index(), edm::EDGetTokenT< reco::RecoChargedCandidateCollection >.index(), edm::EDGetTokenT< pat::METCollection >.index(), edm::EDGetTokenT< reco::GenJetCollection >.index(), edm::EDGetTokenT< reco::TrackJetCollection >.index(), edm::EDGetTokenT< T1Collection >.index(), ValueMap< Bool_t >.index(), edm::EDGetTokenT< reco::PFBlockCollection >.index(), edm::EDGetTokenT< edm::View< pat::Muon > >.index(), EDGetTokenT< Map_t >.index(), edm::EDGetTokenT< std::vector< pat::MET > >.index(), EDGetTokenT< CaloTowerCollection >.index(), EDGetTokenT< HORecHitCollection >.index(), EDGetTokenT< HFRecHitCollection >.index(), vector< PileupSummaryInfo >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::GenJet > > >.index(), edm::EDGetTokenT< reco::FlavorHistoryEvent >.index(), edm::EDGetTokenT< ElectronCollection >.index(), edm::EDGetTokenT< std::vector< pat::IsolatedTrack > >.index(), edm::EDGetTokenT< std::set< EcalScDetId > >.index(), EDGetTokenT< PROD >.index(), edm::EDGetTokenT< L1GctEtTotal >.index(), edm::EDGetTokenT< std::vector< reco::LeafCandidate > >.index(), edm::EDGetTokenT< vector< reco::CaloJet > >.index(), edm::EDGetTokenT< BXVector< GlobalExtBlk > >.index(), edm::EDGetTokenT< BXVector< l1t::Tau > >.index(), edm::EDGetTokenT< edm::View< reco::BaseTau > >.index(), edm::Run.index(), NuclearInteractionSimulator.index(), edm::HLTGlobalStatus.index(), edm::RefCoreWithIndex.index(), edm::test::ProcessToken.index(), edm::EDPutTokenT< CaloTowerBxCollection >.index(), edm::EDPutTokenT< reco::SuperClusterCollection >.index(), edm::EDPutTokenT< edm::EndPathStatus >.index(), edm::EDPutTokenT< edm::Association< reco::TrackExtraCollection > >.index(), edm::EDPutTokenT< EtSumBxCollection >.index(), edm::EDPutTokenT< LumiInfo >.index(), edm::EDPutTokenT< GenEventInfoProduct >.index(), edm::EDPutTokenT< reco::PFCandidateCollection >.index(), edm::EDPutTokenT< std::vector< RPCDigiL1Link > >.index(), edm::EDPutTokenT< reco::PFBlockCollection >.index(), edm::EDPutTokenT< int >.index(), edm::EDPutTokenT< edmNew::DetSetVector< SiStripCluster > >.index(), edm::EDPutTokenT< edmNew::DetSetVector >.index(), edm::EDPutTokenT< L1GtTechnicalTriggerRecord >.index(), EDPutTokenT< PROD >.index(), edm::EDPutTokenT< T >.index(), edm::EDPutTokenT< GenLumiInfoProduct >.index(), edm::EDPutTokenT< FEDRawDataCollection >.index(), edm::EDPutTokenT< edm::OwnVector >.index(), edm::EDPutTokenT< edm::HLTPathStatus >.index(), edm::EDPutTokenT< reco::TrackExtraCollection >.index(), edm::EDPutTokenT< Collection >.index(), edm::EDPutTokenT< CaloClusterBxCollection >.index(), edm::EDPutTokenT< double >.index(), edm::EDPutTokenT< std::vector< std::vector< int > > >.index(), edm::EDPutTokenT< L1MuDTChambThContainer >.index(), edm::EDPutTokenT< DQMToken >.index(), edm::EDPutTokenT< JetBxCollection >.index(), edm::EDPutTokenT< reco::TrackCollection >.index(), edm::EDPutTokenT< std::vector< reco::GenParticle > >.index(), edm::EDPutTokenT< std::vector< edm::EventAuxiliary > >.index(), edm::EDPutTokenT< reco::ElectronCollection >.index(), edm::EDPutTokenT< bool >.index(), edm::EDPutTokenT< GenLumiInfoHeader >.index(), edm::EDPutTokenT< std::vector< edm::ErrorSummaryEntry > >.index(), edm::EDPutTokenT< edm::HepMCProduct >.index(), edm::EDPutTokenT< edm::ConditionsInLumiBlock >.index(), edm::EDPutTokenT< edm::ThinnedAssociation >.index(), edm::EDPutTokenT< std::vector< L1MuRegionalCand > >.index(), edm::EDPutTokenT< edm::ConditionsInEventBlock >.index(), edm::EDPutTokenT< L1CaloRegionCollection >.index(), edm::EDPutTokenT< std::vector< int > >.index(), edm::EDPutTokenT< reco::GsfElectronCollection >.index(), edm::EDPutTokenT< GenRunInfoProduct >.index(), edm::EDPutTokenT< edmNew::DetSetVector< SiPixelCluster > >.index(), edm::EDPutTokenT< EGammaBxCollection >.index(), edm::EDPutTokenT< L1MuDTChambPhContainer >.index(), edm::EDPutTokenT< TauBxCollection >.index(), edm::EDPutTokenT< edm::ConditionsInRunBlock >.index(), edm::EDPutTokenT< edm::TriggerResults >.index(), Looper< T >.index(), geometryXMLparser.CSCAlignable.index(), Looper< T2 >.index(), pat::eventhypothesis::Looper< T >.index(), TkPhase2OTMeasurementDet.index(), DetGroup.index(), fastsim::NuclearInteraction.index(), OmniClusterRef.index(), TkPixelMeasurementDet.index(), PhysicsTools::TreeReader::Value.index, fastsim::SimplifiedGeometry.index(), ntupleDataFormat._Object.index(), edm::TriggerResultsByName.index(), reco::TemplatedSecondaryVertexTagInfo< IPTI, VTX >::IndexedVertexTrackSelector.index, cond::SmallWORMDict.index(), HOTPDigiTwinMux.index(), NuclearInteractionFTFSimulator.index, GeomDet.index(), EcalTimeMapDigitizer.index(), PhysicsTools::VarProcessor::LoopCtx.index(), reco::PFBlockElement.index(), PhysicsTools::MVAComputer::InputVar.index, TkStripMeasurementDet.index(), VIterator< Item >.index, sistrip::RawToDigiUnpacker::Registry.index, SiPixelTemplateDBObject.index(), EcalHitResponse.index(), python.cmstools.EventTree.index(), pat::TriggerPath.index(), edm::ProductResolverIndexHelper.index(), DCCTBDataParser.index(), edm::ESProductHost< Product, RecordTypes >.index(), AlpgenParameterName.index, edm::ProductResolverIndexHelper::Matches.index(), UECalibration.index, FourVectorHLT::PathInfo.index(), DetIdAssociator.index(), Json::Value::CZString.index(), HitDoublets.index(), fastsim::NuclearInteractionFTF.index, SequenceTypes._SequenceCollection.index(), edm::ProductResolverIndexHelper::IndexAndNames.index(), edm::Ref< PFRecHitCollection >.index(), edm::Ref< PFDisplacedVertexCollection >.index(), edm::Ref< CaloJetCollection >.index(), Ref< HSCPDeDxInfoCollection >.index(), edm::Ref< CaloTauTagInfoCollection >.index(), edm::Ref< L1GctHFBitCountsCollection >.index(), Ref< GsfElectronIsoNumCollection >.index(), edm::Ref< C, T, F >.index(), vector< CandSecondaryVertexTagInfo >.index(), edm::Ref< ME0SegmentCollection >.index(), edm::Ref< DTRecSegment4DCollection >.index(), edm::Ref< L1GctHFRingEtSumsCollection >.index(), edm::Ref< L1GctJetCandCollection >.index(), vector< pat::Electron >.index(), edm::Ref< PFBlockCollection >.index(), key_type.index(), edm::Ref< edm::OwnVector >.index(), Ref< T >.index(), edm::Ref< GEMSegmentCollection >.index(), vector< pat::Tau >.index(), edm::Ref< pat::PackedCandidateCollection >.index(), Ref< HBHERecHitCollection >.index(), edm::Ref< PFIsolatedTauTagInfoCollection >.index(), edm::Ref< L1GctEmCandCollection >.index(), edm::Ref< edm::SimTrackContainer >.index(), edm::Ref< GenParticleCollection >.index(), edm::Ref< CastorClusterCollection >.index(), Ref< reco::TrackCollection >.index(), edm::Ref< L1GctEtHadCollection >.index(), edm::Ref< TrackParamConstraintAssociationCollection >.index(), Ref< TCandColl >.index(), vector< pat::Jet >.index(), Ref< C, T, F >.index(), Ref< typename HandleT::element_type, typename HandleT::element_type::value_type::value_type >.index(), edm::Ref< TrackVtxConstraintAssociationCollection >.index(), DetSetVector< SiPixelCluster > SiPixelCluster.index(), edm::Ref< CSCSegmentCollection >.index(), edm::Ref< TrackingParticleCollection >.index(), edm::Ref< TrackCollection >.index(), edm::Ref< PFTauTransverseImpactParameterCollection >.index(), edm::Ref< VertexCollection >.index(), edm::Ref< std::vector< pat::Jet > >.index(), edm::Ref< L1GctHtMissCollection >.index(), edm::Ref< reco::GenJetCollection, typename refhelper::ValueTrait< reco::GenJetCollection >::value, typename refhelper::FindTrait< reco::GenJetCollection, typename refhelper::ValueTrait< reco::GenJetCollection >::value >::value >.index(), edm::Ref< MuonCollection >.index(), edm::Ref< PFTauCollection >.index(), edm::Ref< TrackExtraCollection >.index(), edm::Ref< GsfTrackCollection >.index(), edm::Ref< NuclearInteractionCollection >.index(), edm::Ref< GsfPFRecTrackCollection >.index(), edm::Ref< VertexCompositeCandidateCollection >.index(), edm::Ref< L1JetParticleCollection >.index(), edm::Ref< ConversionCollection >.index(), Ref< PFClusterShapeAssociationCollection >.index(), edm::Ref< std::vector< pat::Muon > >.index(), edm::Ref< std::vector< pat::MET > >.index(), Ref< GsfElectronIsoCollection >.index(), Ref< reco::GenJetCollection >.index(), DetSetVector< TTCluster< T > TTCluster< T >.index(), edm::Ref< GsfTrackMomConstraintAssociationCollection >.index(), edm::Ref< TrajGsfTrackAssociationCollection >.index(), edm::Ref< std::vector< reco::TemplatedSecondaryVertexTagInfo > >.index(), edm::Ref< PFJetCollection >.index(), edm::Ref< PhotonCoreCollection >.index(), Ref< MuonSegmentCollection >.index(), Ref< DeDxHitInfoCollection >.index(), edm::Ref< L1MuonParticleCollection >.index(), Ref< reco::GenParticleCollection >.index(), edm::Ref< IsolatedTauTagInfoCollection >.index(), edm::Ref< std::vector< pat::Electron > >.index(), edm::Ref< edmNew::DetSetVector< TTCluster< T > >, TTCluster< T > >.index(), Ref< reco::PhotonCollection >.index(), vector< pat::Muon >.index(), edm::Ref< PFCandidateCollection >.index(), vector< pat::MET >.index(), edm::Ref< GsfTrackExtraCollection >.index(), edm::Ref< TrackingVertexCollection >.index(), Ref< BasicClusterShapeAssociationCollection >.index(), edm::Ref< reco::TrackExtraCollection >.index(), edm::Ref< HSCPCaloInfoCollection >.index(), edm::Ref< std::vector< pat::Tau > >.index(), edm::Ref< SuperClusterCollection >.index(), edm::Ref< L1GctEtMissCollection >.index(), edm::Ref< CaloTowerCollection >.index(), edm::Ref< TauBxCollection >.index(), Ref< JetEisolAssociationCollection >.index(), edm::Ref< PhotonCollection >.index(), Ref< TrackDeDxHitsCollection >.index(), Ref< reco::IsolatedPixelTrackCandidateCollection >.index(), Ref< collection >.index(), edm::Ref< TrajTrackAssociationCollection >.index(), edm::Ref< PFClusterCollection >.index(), Ref< HSCParticleCollection >.index(), vector< T >.index(), edm::Ref< GsfTrackVtxConstraintAssociationCollection >.index(), edm::Ref< PFTauTagInfoCollection >.index(), edm::Ref< L1GctEtTotalCollection >.index(), edm::Ref< std::vector< IPTI > >.index(), edm::Ref< PFDisplacedTrackerVertexCollection >.index(), edm::Ref< PFRecTrackCollection >.index(), edm::Ref< std::vector< Trajectory > >.index(), Ref< C1, T1, F1 >.index(), edm::Ref< ElectronSeedCollection >.index(), edm::Ref< MuonBxCollection >.index(), edm::Ref< TrackMomConstraintAssociationCollection >.index(), edm::Ref< GsfElectronCoreCollection >.index(), Ref< reco::IsolatedPixelTrackCandidateCollection > double.index(), edm::ProductResolverIndexHelper::Item.index(), SequenceTypes._ModuleSequenceType.index(), pat::strbitset.index(), edm::Ref< std::vector< E >, typename refhelper::ValueTrait< std::vector< E > >::value, typename refhelper::FindTrait< std::vector< E >, typename refhelper::ValueTrait< std::vector< E > >::value >::value >.index(), BeautifulSoup.Tag.index(), Json::ValueIteratorBase.index(), and min().

Referenced by BeautifulSoup.PageElement.append().

205  def insert(self, position, newChild):
206  if isinstance(newChild, str) \
207  and not isinstance(newChild, NavigableString):
208  newChild = NavigableString(newChild)
209 
210  position = min(position, len(self.contents))
211  if hasattr(newChild, 'parent') and newChild.parent is not None:
212  # We're 'inserting' an element that's already one
213  # of this object's children.
214  if newChild.parent is self:
215  index = self.index(newChild)
216  if index > position:
217  # Furthermore we're moving it further down the
218  # list of this object's children. That means that
219  # when we extract this element, our target index
220  # will jump down one.
221  position = position - 1
222  newChild.extract()
223 
224  newChild.parent = self
225  previousChild = None
226  if position == 0:
227  newChild.previousSibling = None
228  newChild.previous = self
229  else:
230  previousChild = self.contents[position-1]
231  newChild.previousSibling = previousChild
232  newChild.previousSibling.nextSibling = newChild
233  newChild.previous = previousChild._lastRecursiveChild()
234  if newChild.previous:
235  newChild.previous.next = newChild
236 
237  newChildsLastElement = newChild._lastRecursiveChild()
238 
239  if position >= len(self.contents):
240  newChild.nextSibling = None
241 
242  parent = self
243  parentsNextSibling = None
244  while not parentsNextSibling:
245  parentsNextSibling = parent.nextSibling
246  parent = parent.parent
247  if not parent: # This is the last element in the document.
248  break
249  if parentsNextSibling:
250  newChildsLastElement.next = parentsNextSibling
251  else:
252  newChildsLastElement.next = None
253  else:
254  nextChild = self.contents[position]
255  newChild.nextSibling = nextChild
256  if newChild.nextSibling:
257  newChild.nextSibling.previousSibling = newChild
258  newChildsLastElement.next = nextChild
259 
260  if newChildsLastElement.next:
261  newChildsLastElement.next.previous = newChildsLastElement
262  self.contents.insert(position, newChild)
263 
T min(T a, T b)
Definition: MathUtil.h:58
def insert(self, position, newChild)
def BeautifulSoup.PageElement.nextGenerator (   self)

Definition at line 387 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findAllNext().

387  def nextGenerator(self):
388  i = self
389  while i is not None:
390  i = i.next
391  yield i
392 
def BeautifulSoup.PageElement.nextSiblingGenerator (   self)

Definition at line 393 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findNextSiblings().

394  i = self
395  while i is not None:
396  i = i.nextSibling
397  yield i
398 
def BeautifulSoup.PageElement.parentGenerator (   self)

Definition at line 411 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findParents().

411  def parentGenerator(self):
412  i = self
413  while i is not None:
414  i = i.parent
415  yield i
416 
def BeautifulSoup.PageElement.previousGenerator (   self)

Definition at line 399 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findAllPrevious().

399  def previousGenerator(self):
400  i = self
401  while i is not None:
402  i = i.previous
403  yield i
404 
def BeautifulSoup.PageElement.previousSiblingGenerator (   self)

Definition at line 405 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findPreviousSiblings().

406  i = self
407  while i is not None:
408  i = i.previousSibling
409  yield i
410 
def BeautifulSoup.PageElement.replaceWith (   self,
  replaceWith 
)

Definition at line 145 of file BeautifulSoup.py.

References BeautifulSoup.PageElement.extract(), and BeautifulSoup.PageElement.parent.

145  def replaceWith(self, replaceWith):
146  oldParent = self.parent
147  myIndex = self.parent.index(self)
148  if hasattr(replaceWith, "parent")\
149  and replaceWith.parent is self.parent:
150  # We're replacing this element with one of its siblings.
151  index = replaceWith.parent.index(replaceWith)
152  if index and index < myIndex:
153  # Furthermore, it comes before this element. That
154  # means that when we extract it, the index of this
155  # element will change.
156  myIndex = myIndex - 1
157  self.extract()
158  oldParent.insert(myIndex, replaceWith)
159 
def replaceWith(self, replaceWith)
def BeautifulSoup.PageElement.replaceWithChildren (   self)

Definition at line 160 of file BeautifulSoup.py.

References FastLineRecognition::Cluster.contents, L1GctProcessor::Pipeline< T >.contents, dqm_interfaces.DirFetcher.contents, BeautifulSoup.Tag.contents, BeautifulSoup.PageElement.extract(), list(), and BeautifulSoup.PageElement.parent.

161  myParent = self.parent
162  myIndex = self.parent.index(self)
163  self.extract()
164  reversedChildren = list(self.contents)
165  reversedChildren.reverse()
166  for child in reversedChildren:
167  myParent.insert(myIndex, child)
168 
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
def BeautifulSoup.PageElement.setup (   self,
  parent = None,
  previous = None 
)
Sets up the initial relations between this element and
other elements.

Definition at line 133 of file BeautifulSoup.py.

133  def setup(self, parent=None, previous=None):
134  """Sets up the initial relations between this element and
135  other elements."""
136  self.parent = parent
137  self.previous = previous
138  self.next = None
139  self.previousSibling = None
140  self.nextSibling = None
141  if self.parent and self.parent.contents:
142  self.previousSibling = self.parent.contents[-1]
143  self.previousSibling.nextSibling = self
144 
def setup(self, parent=None, previous=None)
def BeautifulSoup.PageElement.substituteEncoding (   self,
  str,
  encoding = None 
)

Definition at line 418 of file BeautifulSoup.py.

Referenced by BeautifulSoup.ProcessingInstruction.__str__(), and BeautifulSoup.Tag.__str__().

418  def substituteEncoding(self, str, encoding=None):
419  encoding = encoding or "utf-8"
420  return str.replace("%SOUP-ENCODING%", encoding)
421 
def substituteEncoding(self, str, encoding=None)
def BeautifulSoup.PageElement.toEncoding (   self,
  s,
  encoding = None 
)
Encodes an object to a string in some encoding, or to Unicode.
.

Definition at line 422 of file BeautifulSoup.py.

References str, and BeautifulSoup.PageElement.toEncoding().

Referenced by BeautifulSoup.ProcessingInstruction.__str__(), BeautifulSoup.Tag.__str__(), and BeautifulSoup.PageElement.toEncoding().

422  def toEncoding(self, s, encoding=None):
423  """Encodes an object to a string in some encoding, or to Unicode.
424  ."""
425  if isinstance(s, unicode):
426  if encoding:
427  s = s.encode(encoding)
428  elif isinstance(s, str):
429  if encoding:
430  s = s.encode(encoding)
431  else:
432  s = unicode(s)
433  else:
434  if encoding:
435  s = self.toEncoding(str(s), encoding)
436  else:
437  s = unicode(s)
438  return s
439 
def toEncoding(self, s, encoding=None)
#define str(s)

Member Data Documentation

BeautifulSoup.PageElement.next

Definition at line 138 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement._findAll().

BeautifulSoup.PageElement.nextSibling
BeautifulSoup.PageElement.parent

Definition at line 136 of file BeautifulSoup.py.

Referenced by Vispa.Gui.ConnectableWidget.ConnectableWidget.addMenuEntry(), Vispa.Views.LineDecayView.LineDecayContainer.applyFilter(), Vispa.Views.BoxDecayView.BoxDecayContainer.arrangeUsingRelations(), Vispa.Views.BoxDecayView.BoxDecayContainer.autolayoutAlgorithm(), Vispa.Gui.ZoomableScrollableWidgetOwner.ZoomableScrollableWidgetOwner.autosizeScrollArea(), Vispa.Views.BoxDecayView.BoxDecayContainer.autosizeScrollArea(), confdb.HLTProcess.build_source(), Vispa.Gui.PortWidget.PortWidget.connectionPoint(), Vispa.Main.StartupScreen.StartupScreen.createDescriptionWidget(), Vispa.Views.BoxDecayView.BoxDecayContainer.dataAccessor(), Vispa.Views.LineDecayView.LineDecayContainer.dataAccessor(), Vispa.Views.LineDecayView.DecayLine.dataAccessor(), Vispa.Views.LineDecayView.LineDecayContainer.delete(), Vispa.Views.LineDecayView.DecayNode.delete(), Vispa.Views.LineDecayView.DecayLine.delete(), Vispa.Gui.VispaWidget.VispaWidget.delete(), Vispa.Gui.VispaWidget.VispaWidget.dragWidget(), Vispa.Share.ImageExporter.ImageExporter.exportImageDialog(), Vispa.Views.LineDecayView.DecayLine.extendedSize(), BeautifulSoup.PageElement.extract(), edmIntegrityCheck.PublishToFileSystem.get(), Vispa.Gui.VispaWidget.VispaWidget.keyPressEvent(), Vispa.Gui.MenuWidget.MenuWidget.leaveEvent(), Vispa.Gui.ConnectableWidget.ConnectableWidget.leaveEvent(), Vispa.Gui.PortWidget.PortWidget.moduleParent(), Vispa.Gui.WidgetContainer.WidgetContainer.mouseDoubleClickEvent(), Vispa.Gui.VispaWidget.VispaWidget.mouseDoubleClickEvent(), Vispa.Gui.PortConnection.PointToPointConnection.mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget.mousePressEvent(), Vispa.Views.LineDecayView.ParticleWidget.mousePressEvent(), Vispa.Views.LineDecayView.DecayNode.move(), Vispa.Views.LineDecayView.LineDecayContainer.noDecorationsMode(), Vispa.Views.LineDecayView.LineDecayContainer.operationId(), Vispa.Views.LineDecayView.DecayLine.paint(), Vispa.Gui.VispaWidget.VispaWidget.paintEvent(), Vispa.Gui.ConnectableWidget.ConnectableWidget.positionizeMenuWidget(), edmIntegrityCheck.PublishToFileSystem.publish(), Vispa.Views.LineDecayView.DecayLine.qtLineStyle(), BeautifulSoup.PageElement.replaceWith(), BeautifulSoup.PageElement.replaceWithChildren(), Vispa.Views.WidgetView.WidgetView.restoreSelection(), Vispa.Views.WidgetView.WidgetView.select(), Vispa.Gui.PortConnection.PointToPointConnection.select(), Vispa.Gui.VispaWidget.VispaWidget.select(), Vispa.Views.LineDecayView.LineDecayContainer.select(), Vispa.Views.LineDecayView.LineDecayContainer.sizeHint(), Vispa.Views.LineDecayView.LineDecayContainer.tabController(), Vispa.Views.BoxDecayView.BoxDecayContainer.toggleCollapsed(), Vispa.Views.LineDecayView.DecayNode.unite(), Vispa.Views.PropertyView.PropertyView.valueChanged(), Vispa.Views.BoxDecayView.BoxDecayContainer.widgetByObject(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner.widgetDoubleClicked(), and Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner.widgetDragged().

BeautifulSoup.PageElement.previous
BeautifulSoup.PageElement.previousSibling

Definition at line 139 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.extract().