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 113 of file BeautifulSoup.py.

Member Function Documentation

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

Definition at line 348 of file BeautifulSoup.py.

References cmsBatch.generator.

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

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

Definition at line 341 of file BeautifulSoup.py.

References AlcaSiPixelAliHarvester0T_cff.method.

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

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

Definition at line 117 of file BeautifulSoup.py.

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

Definition at line 197 of file BeautifulSoup.py.

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

198  "Finds the last element beneath this object to be parsed."
199  lastChild = self
200  while hasattr(lastChild, 'contents') and lastChild.contents:
201  lastChild = lastChild.contents[-1]
202  return lastChild
203 
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 443 of file BeautifulSoup.py.

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

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

Definition at line 263 of file BeautifulSoup.py.

References FastLineRecognition::Cluster.contents, L1GctProcessor::Pipeline< T >.contents, dqm_interfaces.DirFetcher.contents, BeautifulSoup.Tag.contents, BinningPointByMap.insert(), cond::persistency::ITagTable.insert(), DDMapper< KeyType, ValueType >.insert(), TSinglePedEntry.insert(), associationMapFilterValuesHelpers::IfFound< edm::Ref< C, T, F > >.insert(), ESCondObjectContainer< T >.insert(), EcalContainer< DetId, T >.insert(), cond::persistency::GLOBAL_TAG::Table.insert(), TPedValues.insert(), RecoIdealGeometry.insert(), cond::persistency::TAG::Table.insert(), ShallowDigisProducer.insert(), edm::OneToValue< CKey, Val, index >.insert(), associationMapFilterValuesHelpers::IfFound< edm::RefToBase< T > >.insert(), EcalCondObjectContainer< T >.insert(), edm::OneToMany< CKey, CVal, index >.insert(), CTPPSPixelAnalysisMask.insert(), edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >.insert(), TotemAnalysisMask.insert(), TotemDAQMapping.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(), cond::persistency::RUN_INFO::Table.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(), cond::persistency::ITagMigrationTable.insert(), associationMapFilterValuesHelpers::IfFound< std::vector< std::pair< edm::RefToBase< T >, Q > > >.insert(), cond::persistency::IOVEditor.insert(), SiPixelClusterShapeCache.insert(), Phase2ITPixelClusterShapeCache.insert(), cond::persistency::IPayloadMigrationTable.insert(), BXVector< T >.insert(), reco::HTTTopJetTagInfo.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().

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

Definition at line 168 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().

168  def extract(self):
169  """Destructively rips this element out of the tree."""
170  if self.parent:
171  try:
172  del self.parent.contents[self.parent.index(self)]
173  except ValueError:
174  pass
175 
176  #Find the two elements that would be next to each other if
177  #this element (and any children) hadn't been parsed. Connect
178  #the two.
179  lastChild = self._lastRecursiveChild()
180  nextElement = lastChild.next
181 
182  if self.previous:
183  self.previous.next = nextElement
184  if nextElement:
185  nextElement.previous = self.previous
186  self.previous = None
187  lastChild.next = None
188 
189  self.parent = None
190  if self.previousSibling:
191  self.previousSibling.nextSibling = self.nextSibling
192  if self.nextSibling:
193  self.nextSibling.previousSibling = self.previousSibling
194  self.previousSibling = self.nextSibling = None
195  return self
196 
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 273 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findNext().

273  **kwargs):
274  """Returns all items that match the given criteria and appear
275  after this Tag in the document."""
276  return self._findAll(name, attrs, text, limit, self.nextGenerator,
277  **kwargs)
278 
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 299 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findPrevious().

299  **kwargs):
300  """Returns all items that match the given criteria and appear
301  before this Tag in the document."""
302  return self._findAll(name, attrs, text, limit, self.previousGenerator,
303  **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 267 of file BeautifulSoup.py.

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

267  def findNext(self, name=None, attrs={}, text=None, **kwargs):
268  """Returns the first item that matches the given criteria and
269  appears after this Tag in the document."""
270  return self._findOne(self.findAllNext, name, attrs, text, **kwargs)
271 
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 279 of file BeautifulSoup.py.

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

279  def findNextSibling(self, name=None, attrs={}, text=None, **kwargs):
280  """Returns the closest sibling to this Tag that matches the
281  given criteria and appears after this Tag in the document."""
282  return self._findOne(self.findNextSiblings, name, attrs, text,
283  **kwargs)
284 
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 286 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findNextSibling().

286  **kwargs):
287  """Returns the siblings of this Tag that match the given
288  criteria and appear after this Tag in the document."""
289  return self._findAll(name, attrs, text, limit,
290  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 320 of file BeautifulSoup.py.

References BeautifulSoup.PageElement.findParents().

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

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

Referenced by BeautifulSoup.PageElement.findParent().

331  def findParents(self, name=None, attrs={}, limit=None, **kwargs):
332  """Returns the parents of this Tag that match the given
333  criteria."""
334 
335  return self._findAll(name, attrs, None, limit, self.parentGenerator,
336  **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 293 of file BeautifulSoup.py.

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

293  def findPrevious(self, name=None, attrs={}, text=None, **kwargs):
294  """Returns the first item that matches the given criteria and
295  appears before this Tag in the document."""
296  return self._findOne(self.findAllPrevious, name, attrs, text, **kwargs)
297 
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 306 of file BeautifulSoup.py.

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

306  def findPreviousSibling(self, name=None, attrs={}, text=None, **kwargs):
307  """Returns the closest sibling to this Tag that matches the
308  given criteria and appears before this Tag in the document."""
309  return self._findOne(self.findPreviousSiblings, name, attrs, text,
310  **kwargs)
311 
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 313 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findPreviousSibling().

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

Definition at line 204 of file BeautifulSoup.py.

References FastLineRecognition::Cluster.contents, L1GctProcessor::Pipeline< T >.contents, dqm_interfaces.DirFetcher.contents, BeautifulSoup.Tag.contents, MatchParam.index, Indexed< T >.index(), TShapeAnalysis.index, OAQualityTranslator.index(), SortObject.index, AlpgenParTokens.index, Phase2TrackerClusterizerArray.index(), EncodedTruthId.index(), CastorChannelCoder.index(), l1t::MuonCaloSum.index(), L1GctFibreWord.index(), MasterCollection< TColl >.index(), MasterCollection< C1 >.index(), helper::MasterCollection< C1 >.index(), CovarianceParameterization.index(), ImpactPoint.index, CSCChamberFitter.index(), CharmTagger::MVAVar.index, PFTauMVAInputDiscriminantTranslator::DiscriminantInfo.index, MCPdgIndexFilter.index, Grid1D.index(), pat::Conversion.index(), EcalUncalibRecHitRatioMethodAlgo< C >::Ratio.index, SiPixelCPEGenericDBErrorParametrization.index(), EcalTrigPrimCompactColl.index(), btag::SimpleMatrix< T >.index(), btag::SimpleMatrix< Delta >.index(), EcalUncalibRecHitRatioMethodAlgo< C >::Tmax.index, DDSolidShapesName.index(), L1RecoMatch.index(), MFGrid3D.index(), pos::PixelDACScanRange.index(), L1TUtmCutValue.index, Phase2ITPixelArrayBuffer.index(), edm::EDGetToken.index(), SiPixelArrayBuffer.index(), FWModelId.index(), helper::MasterCollection< edm::View< T > >.index(), TaggingVariablePlotter::VariableConfig::Plot.index, muonisolation::IsolatorByNominalEfficiency::ConeSizes.index(), SiPixelTemplateDBObject::Reader.index(), Phase2Tracker::Phase2TrackerDigiProducer::Registry.index, edm::RunPrincipal.index(), MuonErrorMatrix.index(), CSCAnodeData2007.index(), Grid3D.index(), edm::HLTPathStatus.index(), edm::LuminosityBlock.index(), UETableProducer.index, SeedingLayerSetsHits::SeedingLayer.index(), IsolatedPixelTrackCandidateProducer::seedAtEC.index, L1CaloEmCand.index(), MFGrid.index(), edm::LuminosityBlockPrincipal.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, geometryXMLparser.DTAlignable.index(), SiPixelGenErrorDBObject.index(), SiPixel2DTemplateDBObject.index(), DeepFlavourJetTagsProducer::MVAVar.index, edm::Run.index(), CSCAnodeData2006.index(), NuclearInteractionSimulator.index(), OmniClusterRef.index(), View< I >.index(), edm::EDGetTokenT< LTCDigiCollection >.index(), edm::EDGetTokenT< SimHitAssoc >.index(), edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > >.index(), ValueMap< reco::PFCandidateRef >.index(), vector< reco::PFCandidateRef >.index(), edm::EDGetTokenT< View< reco::PFCandidate > >.index(), vector< reco::Photon >.index(), edm::EDGetTokenT< std::vector< edm::RefVector< std::vector< T >, T, edm::refhelper::FindUsingAdvance< std::vector< T >, T > > > >.index(), vector< reco::PFCandidate >.index(), edm::EDGetTokenT< reco::TrackRefVector >.index(), edm::EDGetTokenT< TrajectoryCollection >.index(), edm::EDGetTokenT< edm::ContainerMask >.index(), View< reco::Candidate >.index(), edm::EDGetTokenT< std::vector< pat::Tau > >.index(), DetSetVector< SiStripRawDigi >.index(), edm::EDGetTokenT< edm::View< T1 > >.index(), edm::EDGetTokenT< GenLumiInfoProduct >.index(), edm::EDGetTokenT< GenFilterInfo >.index(), vector< unsigned char >.index(), vector< unsigned short >.index(), vector< int >.index(), edm::EDGetTokenT< edm::Association< reco::VertexCollection > >.index(), vector< float >.index(), edm::EDGetTokenT< reco::reco::JetCorrector >.index(), vector< bool >.index(), edm::EDGetTokenT< edm::edm::View< candidate_type > >.index(), DetSetVector< SiPixelCalibDigi >.index(), DetSetVector< PixelDigi >.index(), edm::EDGetTokenT< reco::MuonTrackLinksCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< EcalRecHit, edm::StrictWeakOrdering< EcalRecHit > > >.index(), EDGetTokenT< HFDigiCollection >.index(), edm::EDGetTokenT< std::vector< reco::Muon > >.index(), edm::EDGetTokenT< edm::View< reco::Electron > >.index(), edm::EDGetTokenT< PEcalTBInfo >.index(), ValueMap< Bool_t >.index(), StrictWeakOrdering< HORecHit >.index(), StrictWeakOrdering< HFRecHit >.index(), edm::EDGetTokenT< edm::View< reco::GenJet > >.index(), EDGetTokenT< CaloTowerCollection >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > >.index(), EDGetTokenT< EERecHitCollection >.index(), edm::EDGetTokenT< reco::ElectronIDAssociationCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< StripDigiSimLink > >.index(), vector< PileupSummaryInfo >.index(), EDGetTokenT< EcalRecHitCollection >.index(), edm::EDGetTokenT< L1GctHtMissCollection >.index(), edm::EDGetTokenT< T1 >.index(), edm::EDGetTokenT< pat::TauCollection >.index(), edm::EDGetTokenT< TauCollection >.index(), edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > >.index(), edm::EDGetTokenT< edm::PassiveHitContainer >.index(), edm::EDGetTokenT< reco::MuonTimeExtraMap >.index(), edm::EDGetTokenT< edm::ValueMap< int > >.index(), edm::EDGetTokenT< reco::SecondaryVertexTagInfoCollection >.index(), edm::EDGetTokenT< l1t::TauBxCollection >.index(), edm::EDGetTokenT< HcalTBBeamCounters >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< PixelDigi > >.index(), edm::EDGetTokenT< CrossingFrame< HepMCProduct > >.index(), vector< reco::Track >.index(), vector< Trajectory >.index(), EDGetTokenT< AliClusterValueMap >.index(), edm::EDGetTokenT< edm::View< Object > >.index(), edm::EDGetTokenT< GlobalObjectMapRecord >.index(), edm::EDGetTokenT< GEMRecHitCollection >.index(), edm::EDGetTokenT< TkFittedLasBeamCollection >.index(), edm::EDGetTokenT< reco::IsolatedTauTagInfoCollection >.index(), edm::EDGetTokenT< edmNew::DetSetVector >.index(), edm::EDGetTokenT< reco::PFMETCollection >.index(), edm::EDGetTokenT< DTRecSegment2DCollection >.index(), edm::EDGetTokenT< InputContainer >.index(), edm::EDGetTokenT< L1GlobalTriggerReadoutRecord >.index(), edm::EDGetTokenT< reco::MuonCollection >.index(), edm::EDGetTokenT< MicroGMTConfiguration::InputCollection >.index(), edm::EDGetTokenT< C1 >.index(), edm::EDGetTokenT< reco::VertexCollection >.index(), edm::EDGetTokenT< l1t::EMTFHitCollection >.index(), edm::EDGetTokenT< l1t::EMTFDaqOutCollection >.index(), edm::EDGetTokenT< edm::View< PATObjectType > >.index(), edm::EDGetTokenT< int64_t >.index(), edm::EDGetTokenT< PSimHitContainer >.index(), edm::EDGetTokenT< Obj >.index(), edm::EDGetTokenT< std::vector< pat::Electron > >.index(), edm::EDGetTokenT< HODigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< BXVector< l1t::Muon > >.index(), edm::EDGetTokenT< EMTFTrackCollection >.index(), edm::EDGetTokenT< std::vector< PileupSummaryInfo > >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< PixelDigiSimLink > >.index(), edm::EDGetTokenT< edm::SortedCollection< HFRecHit, edm::StrictWeakOrdering< HFRecHit > > >.index(), edm::EDGetTokenT< edm::ValueMap< StoredPileupJetIdentifier > >.index(), edm::EDGetTokenT< edm::View< VTX > >.index(), edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > >.index(), edm::EDGetTokenT< ObjCollType >.index(), edm::EDGetTokenT< edm::LHCTransportLinkContainer >.index(), edm::EDGetTokenT< std::vector< reco::SuperCluster > >.index(), edm::EDGetTokenT< edm::View< object > >.index(), edm::EDGetTokenT< reco::JetFlavourMatchingCollection >.index(), edm::EDGetTokenT< reco::JetFloatAssociation::Container >.index(), edm::EDGetTokenT< edm::View< reco::BaseTagInfo > >.index(), edm::EDGetTokenT< EMTFHitCollection >.index(), edm::EDGetTokenT< std::pair< double, double > >.index(), edm::EDGetTokenT< edm::View< pat::MET > >.index(), edm::EDGetTokenT< reco::BeamHaloSummary >.index(), edm::EDGetTokenT< reco::ElectronSeedCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondDigi > >.index(), edm::EDGetTokenT< GEMDigiCollection >.index(), edm::EDGetTokenT< L1GctHFBitCountsCollection >.index(), edm::EDGetTokenT< reco::RecoEcalCandidateIsolationMap >.index(), edm::EDGetTokenT< reco::PreshowerClusterShapeCollection >.index(), edm::EDGetTokenT< reco::TrackJetCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHEDataFrame > >.index(), edm::EDGetTokenT< edm::View< reco::pat::CompositeCandidate > >.index(), edm::EDGetTokenT< edm::OwnVector >.index(), edm::EDGetTokenT< reco::Centrality >.index(), edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator >.index(), edm::EDGetTokenT< EEDigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< PixelDigiSimLink > >.index(), edm::EDGetTokenT< edm::View< reco::JPTJet > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPDigi > >.index(), edm::EDGetTokenT< edm::View< TrajectorySeed > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPLocalTrack > >.index(), edm::EDGetTokenT< RegionsSeedingHitSets >.index(), edm::EDGetTokenT< std::vector< reco::GenJet > >.index(), edm::EDGetTokenT< edm::View< pat::pat::Electron > >.index(), edm::EDGetTokenT< edm::Association< reco::GenJetCollection > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonQuality > >.index(), edm::EDGetTokenT< SortedCollection< EcalTimeDigi > >.index(), edm::EDGetTokenT< EcalListOfFEDS >.index(), edm::EDGetTokenT< CrossingFrame< edm::edm::HepMCProduct > >.index(), edm::EDGetTokenT< CrossingFrame< SimTrack > >.index(), edm::EDGetTokenT< std::vector< reco::GsfElectron > >.index(), edm::EDGetTokenT< L1GtTriggerMenuLite >.index(), edm::EDGetTokenT< DetSetVector< SiPixelRawDataError > >.index(), edm::EDGetTokenT< BottomFwdPtrCollection >.index(), edm::EDGetTokenT< std::vector< pat::GenericParticle > >.index(), edm::EDGetTokenT< std::vector< reco::FFTAnyJet< reco::Jet > > >.index(), edm::EDGetTokenT< std::vector< reco::CaloMET > >.index(), edm::EDGetTokenT< FileBlobCollection >.index(), edm::EDGetTokenT< L3MuonTrajectorySeedCollection >.index(), edm::EDGetTokenT< edm::View< reco::Track > >.index(), edm::EDGetTokenT< TriggerPathCollection >.index(), edm::EDGetTokenT< edm::View< reco::GsfElectron > >.index(), edm::EDGetTokenT< edm::View< reco::pat::MET > >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::GenParticle > > >.index(), edm::EDGetTokenT< DTDigiCollection >.index(), edm::EDGetTokenT< COLLECTION >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< RPCDigiSimLink > >.index(), edm::EDGetTokenT< MuonDigiCollection< DTLayerId, DTDigiSimLink > >.index(), edm::EDGetTokenT< EMTFDaqOutCollection >.index(), edm::EDGetTokenT< reco::GenJetCollection >.index(), edm::EDGetTokenT< edm::View >.index(), edm::EDGetTokenT< reco::PFClusterCollection >.index(), edm::EDGetTokenT< QualityMaskCollection >.index(), edm::EDGetTokenT< l1extra::L1EtMissParticleCollection >.index(), edm::EDGetTokenT< IntermediateHitDoublets >.index(), edm::EDGetTokenT< edmNew::DetSetVector< Phase2TrackerCluster1D > >.index(), edm::EDGetTokenT< ME0DigiCollection >.index(), edm::EDGetTokenT< DTRecClusterCollection >.index(), edm::EDGetTokenT< std::set< EEDetId > >.index(), edm::EDGetTokenT< pfMETCollection >.index(), edm::EDGetTokenT< TriggerEvent >.index(), edm::EDGetTokenT< SimTrackContainer >.index(), edm::EDGetTokenT< TtSemiLeptonicEvent >.index(), edm::EDGetTokenT< ME0PadDigiClusterCollection >.index(), edm::EDGetTokenT< std::vector< reco::CompositeCandidate > >.index(), edm::EDGetTokenT< trigger::HLTPrescaleTable >.index(), edm::EDGetTokenT< PEcalValidInfo >.index(), edm::EDGetTokenT< reco::HcalHaloData >.index(), edm::EDGetTokenT< edm::Association >.index(), edm::EDGetTokenT< reco::CSCHaloData >.index(), edm::EDGetTokenT< edm::ValueMap< reco::VoronoiBackground > >.index(), edm::EDGetTokenT< L1MuDTTrackContainer >.index(), edm::EDGetTokenT< reco::RecoToGenCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPCluster > >.index(), edm::EDGetTokenT< edm::View< reco::CompositeCandidate > >.index(), edm::EDGetTokenT< EGammaBxCollection >.index(), edm::EDGetTokenT< ProbeCollType >.index(), edm::EDGetTokenT< edm::View< pat::Muon > >.index(), edm::EDGetTokenT< FastTrackerRecHitCombinationCollection >.index(), edm::EDGetTokenT< DTDDUCollection >.index(), edm::EDGetTokenT< CrossingFrame< edm::HepMCProduct > >.index(), edm::EDGetTokenT< reco::PFCluster::EEtoPSAssociation >.index(), edm::EDGetTokenT< edm::SortedCollection< HODataFrame > >.index(), edm::EDGetTokenT< GlobalHaloData >.index(), edm::EDGetTokenT< RPCDigiCollection >.index(), edm::EDGetTokenT< reco::RecoChargedCandidateIsolationMap >.index(), edm::EDGetTokenT< BeamSpot >.index(), edm::EDGetTokenT< L1CSCTrackCollection >.index(), edm::EDGetTokenT< L1GctEmCandCollection >.index(), edm::EDGetTokenT< reco::PreIdCollection >.index(), edm::EDGetTokenT< reco::WMuNuCandidateCollection >.index(), edm::EDGetTokenT< std::vector< edm::ErrorSummaryEntry > >.index(), edm::EDGetTokenT< GenParticleMatch >.index(), edm::EDGetTokenT< TauDiscriminator >.index(), edm::EDGetTokenT< LumiScalersCollection >.index(), edm::EDGetTokenT< edm::View< reco::PFRecTrack > >.index(), edm::EDGetTokenT< FEDRawDataCollection >.index(), EDGetTokenT< TrajTrackAssociationCollection >.index(), edm::EDGetTokenT< pat::MuonCollection >.index(), edm::EDGetTokenT< L1GctEtMissCollection >.index(), edm::EDGetTokenT< VertexCollection >.index(), edm::EDGetTokenT< l1t::JetBxCollection >.index(), edm::EDGetTokenT< edm::View< reco::Vertex > >.index(), edm::EDGetTokenT< std::vector< int > >.index(), View< C >.index(), edm::EDGetTokenT< reco::JetTracksAssociationCollection >.index(), edm::EDGetTokenT< MicroGMTConfiguration::CaloInputCollection >.index(), edm::EDGetTokenT< std::vector< reco::Track > >.index(), edm::EDGetTokenT< C2 >.index(), edm::EDGetTokenT< double >.index(), edm::EDGetTokenT< TriggerFilterCollection >.index(), edm::EDGetTokenT< EventWithHistory >.index(), edm::EDGetTokenT< edm::HepMCProduct >.index(), edm::EDGetTokenT< reco::JetTagCollection >.index(), edm::EDGetTokenT< std::vector< PCaloHit > >.index(), edm::EDGetTokenT< edm::PSimHitContainer >.index(), edm::EDGetTokenT< edm::View< reco::Jet > >.index(), edm::EDGetTokenT< trigger::TriggerEvent >.index(), edm::EDGetTokenT< std::vector< reco::GenParticle > >.index(), edm::EDGetTokenT< typename edm::View< T > >.index(), edm::EDGetTokenT< JetTracksAssociationCollection >.index(), edm::EDGetTokenT< std::vector< PSimHit > >.index(), edm::EDGetTokenT< typename edm::View< C > >.index(), edm::EDGetTokenT< edm::AssociationMap >.index(), EDGetTokenT< SiStripRecHit2DCollection >.index(), edm::EDGetTokenT< reco::CaloJetCollection >.index(), edm::EDGetTokenT< std::vector< math::XYZTLorentzVector > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::CandidatePtr > >.index(), edm::EDGetTokenT< LHEEventProduct >.index(), EDGetTokenT< SiStripMatchedRecHit2DCollection >.index(), edm::EDGetTokenT< reco::RecoToSimCollection >.index(), edm::EDGetTokenT< TotemTriggerCounters >.index(), edm::EDGetTokenT< edm::View< PATObjType > >.index(), edm::EDGetTokenT< View< Track > >.index(), edm::EDGetTokenT< edm::RefVector >.index(), edm::EDGetTokenT< EtSumBxCollection >.index(), edm::EDGetTokenT< std::vector< pat::pat::MET > >.index(), edm::EDGetTokenT< vector< reco::PFJet > >.index(), edm::EDGetTokenT< StGenEvent >.index(), edm::EDGetTokenT< FastTrackerRecHitRefCollection >.index(), edm::EDGetTokenT< std::vector< SimCluster > >.index(), edm::EDGetTokenT< IntermediateHitTriplets >.index(), edm::EDGetTokenT< std::vector< LHS > >.index(), edm::EDGetTokenT< InputCollection >.index(), edm::EDGetTokenT< edm::EventTime >.index(), edm::EDGetTokenT< reco::edm::RefVector >.index(), edm::EDGetTokenT< BSTRecord >.index(), EDGetTokenT< HBHERecHitCollection >.index(), edm::EDGetTokenT< pat::PATTauDiscriminator >.index(), EDGetTokenT< HORecHitCollection >.index(), edm::EDGetTokenT< TH3F >.index(), edm::EDGetTokenT< std::vector< reco::CaloJet > >.index(), edm::EDGetTokenT< typename Selector::collection >.index(), edm::EDGetTokenT< PileupMixingContent >.index(), edm::EDGetTokenT< edm::ConditionsInRunBlock >.index(), EDGetTokenT< HFRecHitCollection >.index(), edm::EDGetTokenT< edm::View< pat::pat::Tau > >.index(), edm::EDGetTokenT< edm::View< reco::GenParticle > >.index(), edm::EDGetTokenT< reco::PhotonCollection >.index(), edm::EDGetTokenT< edm::SimVertexContainer >.index(), edm::EDGetTokenT< EBDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< double >::type >.index(), edm::EDGetTokenT< reco::SuperClusterCollection >.index(), EDGetTokenT< EBRecHitCollection >.index(), edm::EDGetTokenT< edm::View< reco::MET > >.index(), EDGetTokenT< Map_t >.index(), edm::EDGetTokenT< HcalTBEventPosition >.index(), edm::EDGetTokenT< TtGenEvent >.index(), edm::EDGetTokenT< bool >.index(), edm::EDGetTokenT< std::vector< reco::SoftLeptonTagInfo > >.index(), StrictWeakOrdering< HBHERecHit >.index(), edm::EDGetTokenT< SortedCollection< HcalTriggerPrimitiveDigi > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::DeDxData > >.index(), edm::EDGetTokenT< std::vector< unsigned int > >.index(), edm::EDGetTokenT< LHERunInfoProduct >.index(), edm::EDGetTokenT< reco::JPTJetCollection >.index(), edm::EDGetTokenT< reco::PFDisplacedVertexCandidateCollection >.index(), View< reco::Muon >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< pat::PackedCandidate > > >.index(), EDGetTokenT< HBHEDigiCollection >.index(), edm::EDGetTokenT< AssociationMap< edm::OneToMany< std::vector< reco::PFJet >, std::vector< reco::PFCandidate >, unsigned int > > >.index(), EDGetTokenT< HODigiCollection >.index(), edm::EDGetTokenT< TTClusterAssociationMap< T > >.index(), edm::EDGetTokenT< HOCalibVariableCollection >.index(), edm::EDGetTokenT< PCrossingFrame< SimTrack > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPRecHit > >.index(), edm::EDGetTokenT< reco::ClusterRemovalInfo >.index(), EDGetTokenT< SiPixelRecHitCollection >.index(), edm::EDGetTokenT< reco::IsolatedPixelTrackCandidateCollection >.index(), edm::EDGetTokenT< SimParticles >.index(), edm::EDGetTokenT< VarCollection >.index(), edm::EDGetTokenT< reco::BeamSpot >.index(), edm::EDGetTokenT< reco::TrackCollection >.index(), edm::EDGetTokenT< Level1TriggerScalersCollection >.index(), edm::EDGetTokenT< edm::ConditionsInLumiBlock >.index(), DetSetVector< SiPixelCalibDigiError >.index(), edm::EDGetTokenT< edm::TriggerResults >.index(), vector< double >.index(), edm::EDGetTokenT< CSCCorrelatedLCTDigiCollection >.index(), edm::EDGetTokenT< pat::ElectronCollection >.index(), edm::EDGetTokenT< reco::BasicJetCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< Phase2TrackerDigi > >.index(), edm::EDGetTokenT< TYPE >.index(), vector< unsigned int >.index(), edm::EDGetTokenT< GenParticleCollection >.index(), EDGetTokenT< PFCandToVertexAssMap >.index(), edm::EDGetTokenT< EcalTBTDCRecInfo >.index(), edm::EDGetTokenT< SimHitTPAssociationProducer::SimHitTPAssociationList >.index(), edm::EDGetTokenT< SortedCollection< CaloTower > >.index(), edm::EDGetTokenT< edm::ValueMap< double > >.index(), edm::EDGetTokenT< CSCTriggerContainer< csctf::TrackStub > >.index(), edm::EDGetTokenT< LumiDetails >.index(), edm::EDGetTokenT< SortedCollection< EBSrFlag > >.index(), EDGetTokenT< T >.index(), edm::EDGetTokenT< PGlobalDigi >.index(), edm::EDGetTokenT< pat::PackedCandidateCollection >.index(), edm::EDGetTokenT< std::vector< unsigned short > >.index(), DetSetVector< SiStripProcessedRawDigi >.index(), edm::EDGetTokenT< std::vector< reco::PFTau > >.index(), View< reco::Track >.index(), edm::EDGetTokenT< JetCollection >.index(), EDGetTokenT< DetIdCollection >.index(), edm::EDGetTokenT< reco::VertexToTrackingVertexAssociator >.index(), edm::EDGetTokenT< l1t::CaloTowerBxCollection >.index(), edm::EDGetTokenT< L1GctJetCounts >.index(), ValueMap< float >.index(), edm::EDGetTokenT< BXVector< l1t::EGamma > >.index(), edm::EDGetTokenT< std::string >.index(), edm::EDGetTokenT< reco::JetMatchedPartonsCollection >.index(), edm::EDGetTokenT< pat::TriggerEvent >.index(), edm::EDGetTokenT< reco::CandMatchMap >.index(), edm::EDGetTokenT< typename SingleElementCollectionSelector< InputCollection, Selector, reco::CandidateCollection, StoreContainer, RefAdder >::collection >.index(), edm::EDGetTokenT< TrackingParticleCollection >.index(), EDGetTokenT< IsoMap >.index(), vector< reco::Muon >.index(), edm::EDGetTokenT< CSCRecHit2DCollection >.index(), vector< reco::GsfElectron >.index(), edm::EDGetTokenT< edm::ValueMap< bool > >.index(), edm::EDGetTokenT< reco::MuonToMuonMap >.index(), edm::EDGetTokenT< reco::BasicClusterCollection >.index(), edm::EDGetTokenT< CSCWireDigiCollection >.index(), edm::EDGetTokenT< HcalNoiseSummary >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonShower > >.index(), edm::EDGetTokenT< l1t::EGammaBxCollection >.index(), edm::EDGetTokenT< TopFwdPtrCollection >.index(), EDGetTokenT< PFView >.index(), edm::EDGetTokenT< std::vector< SimTrack > >.index(), edm::EDGetTokenT< std::vector< SimVertex > >.index(), edm::EDGetTokenT< LumiSummary >.index(), ValueMap< bool >.index(), edm::EDGetTokenT< PixelFitter >.index(), edm::EDGetTokenT< reco::DiscretizedEnergyFlow >.index(), View< T >.index(), edm::EDGetTokenT< TriggerObjectCollection >.index(), edm::EDGetTokenT< edm::AssociationVector >.index(), edm::EDGetTokenT< reco::GenMETCollection >.index(), edm::EDGetTokenT< CaloParticleCollection >.index(), edm::EDGetTokenT< edm::ValueMap< float > >.index(), edm::EDGetTokenT< edm::View< reco::CaloCluster > >.index(), EDGetTokenT< VertexToTrackAssMap >.index(), edm::EDGetTokenT< edm::SimTrackContainer >.index(), EDGetTokenT< VertexToPFCandAssMap >.index(), edm::EDGetTokenT< L1MuGMTCandCollection >.index(), edm::EDGetTokenT< std::vector< pat::CompositeCandidate > >.index(), edm::EDGetTokenT< reco::CaloMETCollection >.index(), edm::EDGetTokenT< MeasurementTrackerEvent >.index(), FwdPtr< T >.index(), View< Object >.index(), edm::EDGetTokenT< std::vector< uint32_t > >.index(), edm::EDGetTokenT< sistrip::sistrip::SpyDigiConverter::DSVRawDigis >.index(), edm::EDGetTokenT< std::vector< SVTag > >.index(), edm::EDGetTokenT< reco::PattRecoTree >.index(), edm::EDGetTokenT< edm::View< pat::pat::Muon > >.index(), EDGetTokenT< PROD >.index(), edm::EDGetTokenT< l1extra::L1MuonParticleCollection >.index(), edm::EDGetTokenT< std::vector< std::string > >.index(), edm::EDGetTokenT< ME0RecHitCollection >.index(), edm::EDGetTokenT< View< reco::Candidate > >.index(), edm::EDGetTokenT< edm::View< reco::GenMET > >.index(), edm::EDGetTokenT< std::vector< L1MuRegionalCand > >.index(), edm::EDGetTokenT< std::vector< BPHTrackReference::candidate > >.index(), edm::EDGetTokenT< HcalDataFrameContainer< QIE10DataFrame > >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::Muon > > >.index(), edm::EDGetTokenT< GEMSegmentCollection >.index(), edm::EDGetTokenT< CSCRPCDigiCollection >.index(), edm::EDGetTokenT< HitCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HFDataFrame > >.index(), EDGetTokenT< TrackToVertexAssMap >.index(), EDGetTokenT< av_t >.index(), edm::EDGetTokenT< reco::GenParticleMatch >.index(), edm::EDGetTokenT< edm::edm::View< T > >.index(), edm::EDGetTokenT< ME0MuonCollection >.index(), edm::EDGetTokenT< BXVector< CaloSpare > >.index(), edm::EDGetTokenT< SortedCollection< FTLUncalibratedRecHit > >.index(), edm::EDGetTokenT< reco::PreshowerClusterCollection >.index(), edm::EDGetTokenT< View< Jet > >.index(), edm::EDGetTokenT< std::vector< float > >.index(), edm::EDGetTokenT< std::vector< edm::edm::FwdPtr< T > > >.index(), edm::EDGetTokenT< SiStripEventSummary >.index(), edm::EDGetTokenT< edm::View< reco::RecoChargedRefCandidate > >.index(), edm::EDGetTokenT< RPCRecHitCollection >.index(), edm::EDGetTokenT< edm::View< pat::Jet > >.index(), edm::EDGetTokenT< reco::ValueMap< reco::MuonTimeExtra > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiPixelCluster > >.index(), edm::EDGetTokenT< L1GlobalTriggerEvmReadoutRecord >.index(), EDGetTokenT< association_t >.index(), edm::EDGetTokenT< reco::TrackExtraCollection >.index(), edm::EDGetTokenT< reco::PFBlockCollection >.index(), edm::EDGetTokenT< std::vector< pat::MET > >.index(), edm::EDGetTokenT< edm::ValueMap >.index(), edm::EDGetTokenT< std::set< EBDetId > >.index(), edm::EDGetTokenT< ESDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< pat::METCollection >.index(), edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs >.index(), edm::EDGetTokenT< reco::RecoChargedCandidateCollection >.index(), edm::EDGetTokenT< typename SingleElementCollectionRefSelector< InputType, Selector, OutputCollection, StoreContainer, RefAdder >::collection >.index(), edm::EDGetTokenT< l1t::EMTFTrackCollection >.index(), edm::EDGetTokenT< std::vector< reco::CaloMuon > >.index(), edm::EDGetTokenT< reco::GenParticleCollection >.index(), edm::EDGetTokenT< std::set< EcalTrigTowerDetId > >.index(), edm::EDGetTokenT< reco::FlavorHistoryEvent >.index(), edm::EDGetTokenT< vector< int > >.index(), edm::EDGetTokenT< edm::View< reco::Candidate > >.index(), edm::EDGetTokenT< reco::ConversionTrackCollection >.index(), edm::EDGetTokenT< HcalDataFrameContainer< QIE11DataFrame > >.index(), edm::EDGetTokenT< CSCDCCFormatStatusDigiCollection >.index(), edm::EDGetTokenT< reco::FFTJetPileupSummary >.index(), edm::EDGetTokenT< edm::ValueMap< pat::pat::VertexAssociation > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondLocalTrack > >.index(), edm::EDGetTokenT< ContainerMask< edmNew::DetSetVector< SiStripCluster > > >.index(), edm::EDGetTokenT< CSCCLCTPreTriggerCollection >.index(), edm::EDGetTokenT< std::vector< MaterialAccountingTrack > >.index(), edm::EDGetTokenT< edm::Association< reco::PFCandidateCollection > >.index(), edm::EDGetTokenT< View< Muon > >.index(), edm::EDGetTokenT< PixelTrackFilter >.index(), edm::EDGetTokenT< std::vector< pat::Particle > >.index(), edm::EDGetTokenT< RecoMuons >.index(), edm::EDGetTokenT< HcalDataFrameContainer >.index(), edm::EDGetTokenT< reco::PFDisplacedTrackerVertexCollection >.index(), edm::EDGetTokenT< susybsm::HSCParticleCollection >.index(), edm::EDGetTokenT< reco::JetTracksAssociation::Container >.index(), edm::EDGetTokenT< SortedCollection< EcalEBTriggerPrimitiveDigi > >.index(), edm::EDGetTokenT< RPCRawSynchro::ProdItem >.index(), edm::EDGetTokenT< CandidateCollection >.index(), edm::EDGetTokenT< JetBxCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonMETCorrectionData > >.index(), edm::EDGetTokenT< CTPPSFastRecHitContainer >.index(), edm::EDGetTokenT< ClusterSummary >.index(), edm::EDGetTokenT< EcalTBEventHeader >.index(), edm::EDGetTokenT< L1DataEmulRecord >.index(), edm::EDGetTokenT< HBHEDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< RPCRawDataCounts >.index(), edm::EDGetTokenT< edm::View< reco::Muon > >.index(), edm::EDGetTokenT< int >.index(), edm::EDGetTokenT< ValueMap< float > >.index(), edm::EDGetTokenT< CSCALCTDigiCollection >.index(), edm::EDGetTokenT< edm::View< pat::pat::Jet > >.index(), edm::EDGetTokenT< edm::View< reco::pat::Jet > >.index(), edm::EDGetTokenT< CSCStripDigiCollection >.index(), edm::EDGetTokenT< std::vector< pat::Jet > >.index(), edm::EDGetTokenT< edm::View< reco::RecoCandidate > >.index(), edm::EDGetTokenT< std::vector< reco::Vertex > >.index(), edm::EDGetTokenT< SimClusterCollection >.index(), edm::EDGetTokenT< reco::ElectronCollection >.index(), edm::EDGetTokenT< L2MuonTrajectorySeedCollection >.index(), edm::EDGetTokenT< edm::View< reco::pat::Muon > >.index(), edm::EDGetTokenT< L1AcceptBunchCrossingCollection >.index(), edm::EDGetTokenT< T >.index(), edm::EDGetTokenT< std::vector< JetType > >.index(), edm::EDGetTokenT< reco::PFRecHitCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< Digi > >.index(), edm::EDGetTokenT< edm::View< reco::pat::Photon > >.index(), edm::EDGetTokenT< edm::SortedCollection< HFRecHit > >.index(), edm::EDGetTokenT< std::vector< reco::CastorTower > >.index(), edm::EDGetTokenT< edm::View< reco::CaloJet > >.index(), edm::EDGetTokenT< PFTauTagInfoCollection >.index(), edm::EDGetTokenT< PileupVertexContent >.index(), edm::EDGetTokenT< edm::ContainerMask< edmNew::DetSetVector< SiPixelCluster > > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondRecHit > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::JetID > >.index(), edm::EDGetTokenT< std::vector< L1MuGMTCand > >.index(), edm::EDGetTokenT< CaloTowerBxCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelCalibDigiError > >.index(), edm::EDGetTokenT< L1GlobalTriggerObjectMaps >.index(), edm::EDGetTokenT< TrackCandidateCollection >.index(), edm::EDGetTokenT< reco::EvtPlaneCollection >.index(), edm::EDGetTokenT< CSCDDUStatusDigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemVFATStatus > >.index(), EDGetTokenT< am_t >.index(), edm::EDGetTokenT< DTROS25Collection >.index(), edm::EDGetTokenT< reco::PhotonCoreCollection >.index(), edm::EDGetTokenT< CSCComparatorDigiCollection >.index(), edm::EDGetTokenT< MuonBxCollection >.index(), edm::EDGetTokenT< edm::View< pat::pat::Photon > >.index(), edm::EDGetTokenT< METCollection >.index(), edm::EDGetTokenT< reco::JetIDValueMap >.index(), edm::EDGetTokenT< C >.index(), edm::EDGetTokenT< EcalTBHodoscopeRecInfo >.index(), edm::EDGetTokenT< CrossingFrame< SimVertex > >.index(), edm::EDGetTokenT< CrossingFrame< PCaloHit > >.index(), edm::EDGetTokenT< edm::View< reco::reco::Candidate > >.index(), edm::EDGetTokenT< pat::CompositeCandidateCollection >.index(), edm::EDGetTokenT< OColl >.index(), edm::EDGetTokenT< std::vector< reco::Photon > >.index(), edm::EDGetTokenT< L1GctHFRingEtSumsCollection >.index(), edm::EDGetTokenT< unsigned int >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonCosmicCompatibility > >.index(), edm::EDGetTokenT< reco::JetCorrector >.index(), edm::EDGetTokenT< reco::PFTauCollection >.index(), edm::EDGetTokenT< APVCyclePhaseCollection >.index(), edm::EDGetTokenT< TriggerConditionCollection >.index(), edm::EDGetTokenT< ESDigiCollection >.index(), edm::EDGetTokenT< reco::RecoEcalCandidateCollection >.index(), edm::EDGetTokenT< TrackCollection >.index(), edm::EDGetTokenT< BXVector< l1t::Jet > >.index(), edm::EDGetTokenT< CSCDCCStatusDigiCollection >.index(), edm::EDGetTokenT< std::vector< TrackingParticle > >.index(), edm::EDGetTokenT< reco::DeDxDataValueMap >.index(), edm::EDGetTokenT< reco::TrackCaloClusterPtrAssociation >.index(), edm::EDGetTokenT< L1GctEtTotal >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< int >::type >.index(), edm::EDGetTokenT< l1t::CaloClusterBxCollection >.index(), edm::EDGetTokenT< edm::View< pat::Tau > >.index(), edm::EDGetTokenT< reco::EcalHaloData >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelCalibDigi > >.index(), edm::EDGetTokenT< std::vector< reco::TrackExtrapolation > >.index(), edm::EDGetTokenT< reco::GenToRecoCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelRawDataError > >.index(), edm::EDGetTokenT< edm::View< T2 > >.index(), edm::EDGetTokenT< TrajectorySeedCollection >.index(), edm::EDGetTokenT< std::vector< unsigned char > >.index(), edm::EDGetTokenT< pat::JetCollection >.index(), View< reco::Jet >.index(), edm::EDGetTokenT< std::vector< reco::PFJet > >.index(), edm::EDGetTokenT< l1t::RegionalMuonCandBxCollection >.index(), edm::EDGetTokenT< reco::JetView >.index(), edm::EDGetTokenT< std::vector< T > >.index(), edm::EDGetTokenT< reco::JetFlavourInfoMatchingCollection >.index(), edm::EDGetTokenT< HepMCProduct >.index(), edm::EDGetTokenT< CSCCLCTDigiCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripCluster > >.index(), edm::EDGetTokenT< DTRecSegment4DCollection >.index(), edm::EDGetTokenT< CrossingFrame< PSimHit > >.index(), edm::EDGetTokenT< edm::View< reco::CaloMET > >.index(), edm::EDGetTokenT< std::vector< reco::FFTAnyJet< reco::GenJet > > >.index(), edm::EDGetTokenT< reco::GlobalHaloData >.index(), edm::EDGetTokenT< L1GlobalTriggerRecord >.index(), edm::EDGetTokenT< PGlobalSimHit >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHERecHit, edm::StrictWeakOrdering< HBHERecHit > > >.index(), edm::EDGetTokenT< PattRecoTree< float, reco::PattRecoPeak< float > > >.index(), edm::EDGetTokenT< std::vector< math::PtEtaPhiMLorentzVector > >.index(), edm::EDGetTokenT< PGlobalRecHit >.index(), edm::EDGetTokenT< std::vector< pat::PackedCandidate > >.index(), edm::EDGetTokenT< T1Collection >.index(), edm::EDGetTokenT< std::map< uint, std::vector< SiStripCluster > > >.index(), edm::EDGetTokenT< std::vector< bool > >.index(), edm::EDGetTokenT< edm::ValueMap< unsigned int > >.index(), edm::EDGetTokenT< SeedingLayerSetsHits >.index(), edm::EDGetTokenT< DTLocalTriggerCollection >.index(), edm::EDGetTokenT< EBDigiCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFMET > >.index(), edm::EDGetTokenT< reco::GsfElectronCoreCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< PixelDigi > >.index(), edm::EDGetTokenT< HcalTBTiming >.index(), edm::EDGetTokenT< std::vector< Trajectory > >.index(), edm::EDGetTokenT< L1GctJetCountsCollection >.index(), edm::EDGetTokenT< L1GctJetCandCollection >.index(), edm::EDGetTokenT< TH2D >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > >.index(), edm::EDGetTokenT< CandidateView >.index(), edm::EDGetTokenT< EEDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< std::vector< double > >.index(), edm::EDGetTokenT< reco::CandDoubleAssociations >.index(), edm::EDGetTokenT< l1extra::L1JetParticleCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFCluster > >.index(), edm::EDGetTokenT< reco::VertexCompositePtrCandidateCollection >.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< edm::View< reco::ConversionTrack > >.index(), edm::EDGetTokenT< reco::PattRecoTree< fftjetcms::Real, reco::PattRecoPeak< fftjetcms::Real > > >.index(), edm::EDGetTokenT< std::vector< edm::RefVector< std::vector< jetType >, jetType, edm::refhelper::FindUsingAdvance< std::vector< jetType >, jetType > > > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PFCandidatePtr > >.index(), edm::EDGetTokenT< BXVector< l1t::EtSum > >.index(), edm::EDGetTokenT< reco::HcalNoiseRBXCollection >.index(), edm::EDGetTokenT< reco::CaloTauCollection >.index(), edm::EDGetTokenT< GEMPadDigiCollection >.index(), edm::EDGetTokenT< std::vector< TrackingVertex > >.index(), edm::EDGetTokenT< std::vector< jetType > >.index(), edm::EDGetTokenT< L1GctEtHad >.index(), edm::EDGetTokenT< CorrMETData >.index(), edm::EDGetTokenT< TTStubAssociationMap< T > >.index(), edm::EDGetTokenT< reco::DeDxHitInfoAss >.index(), edm::EDGetTokenT< Product >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< reco::PFCandidate > > >.index(), edm::EDGetTokenT< reco::TrackToTrackMap >.index(), edm::EDGetTokenT< BeamSpotOnlineCollection >.index(), edm::EDGetTokenT< edm::Association< std::vector< pat::pat::PackedGenParticle > > >.index(), edm::EDGetTokenT< edm::View< reco::PFJet > >.index(), edm::EDGetTokenT< reco::GsfTrackCollection >.index(), edm::EDGetTokenT< PFCollection >.index(), edm::EDGetTokenT< L1CaloRegionCollection >.index(), edm::EDGetTokenT< trigger::TriggerEventWithRefs >.index(), edm::EDGetTokenT< reco::Vertex >.index(), edm::EDGetTokenT< reco::PFJetChargedHadronAssociation >.index(), edm::EDGetTokenT< edm::Association< reco::PFJetCollection > >.index(), edm::EDGetTokenT< edm::PCaloHitContainer >.index(), edm::EDGetTokenT< BXVector >.index(), edm::EDGetTokenT< reco::PFCandidateCollection >.index(), edm::EDGetTokenT< edm::ConditionsInEventBlock >.index(), edm::EDGetTokenT< Collection >.index(), edm::EDGetTokenT< SortedCollection< HcalTTPDigi > >.index(), edm::EDGetTokenT< std::vector< IPTI > >.index(), edm::EDGetTokenT< edm::View< reco::PFMET > >.index(), edm::EDGetTokenT< std::vector< TotemFEDInfo > >.index(), edm::EDGetTokenT< HFDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< RegionalMuonCandBxCollection >.index(), edm::EDGetTokenT< SimHitTPAssociationList >.index(), edm::EDGetTokenT< patMETCollection >.index(), edm::EDGetTokenT< L1MuRegionalCandCollection >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< float >::type >.index(), edm::EDGetTokenT< ME0DigiPreRecoCollection >.index(), edm::EDGetTokenT< TagCollType >.index(), edm::EDGetTokenT< LeptonCollection >.index(), edm::EDGetTokenT< HcalUnpackerReport >.index(), edm::EDGetTokenT< INFOS >.index(), edm::EDGetTokenT< std::vector< pat::TriggerObjectStandAlone > >.index(), edm::EDGetTokenT< reco::PFV0Collection >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTCluster< T > > >.index(), edm::EDGetTokenT< HcalUMNioDigi >.index(), edm::EDGetTokenT< std::set< EcalScDetId > >.index(), edm::EDGetTokenT< edm::View< reco::BasicJet > >.index(), edm::EDGetTokenT< ErrorList >.index(), edm::EDGetTokenT< std::vector< reco::LeafCandidate > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTStub< edm::Ref > > >.index(), edm::EDGetTokenT< edm::EDCollection >.index(), edm::EDGetTokenT< PATPrimitiveCollection >.index(), edm::EDGetTokenT< vector< reco::CaloJet > >.index(), edm::EDGetTokenT< edm::View< pat::Photon > >.index(), edm::EDGetTokenT< ZDCDigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< BXVector< l1t::Tau > >.index(), edm::EDGetTokenT< std::vector< CaloParticle > >.index(), edm::EDGetTokenT< reco::JetPiZeroAssociation >.index(), edm::EDGetTokenT< View< reco::Jet > >.index(), edm::EDGetTokenT< std::vector< pat::Muon > >.index(), edm::EDGetTokenT< GenEventInfoProduct >.index(), edm::EDGetTokenT< edm::View< reco::BaseTau > >.index(), edm::EDGetTokenT< l1extra::L1HFRingsCollection >.index(), edm::EDGetTokenT< ESListOfFEDS >.index(), edm::EDGetTokenT< PFTauDiscriminator >.index(), edm::EDGetTokenT< std::vector< l1extra::L1MuonParticle > >.index(), edm::EDGetTokenT< TauBxCollection >.index(), edm::EDGetTokenT< TColl >.index(), edm::EDGetTokenT< BXVector< GlobalExtBlk > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelDigi > >.index(), edm::EDGetTokenT< std::vector< RHS > >.index(), edm::EDGetTokenT< reco::SiStripElectronCollection >.index(), edm::EDGetTokenT< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > >.index(), edm::EDGetTokenT< reco::SoftLeptonTagInfoCollection >.index(), edm::EDGetTokenT< reco::VertexCompositeCandidateCollection >.index(), edm::EDGetTokenT< reco::TrackToGenParticleAssociator >.index(), edm::EDGetTokenT< reco::HcalIsolatedTrackCandidateCollection >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTCluster< edm::Ref > > >.index(), edm::EDGetTokenT< L1GctEtMiss >.index(), edm::EDGetTokenT< reco::TrackCandidateCaloClusterPtrAssociation >.index(), edm::EDGetTokenT< BasicJetCollection >.index(), edm::EDGetTokenT< reco::PFRecTrackCollection >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< SiStripDigi > >.index(), edm::EDGetTokenT< reco::PUSubMETCandInfoCollection >.index(), edm::EDGetTokenT< TrackingVertexCollection >.index(), edm::EDGetTokenT< std::vector< reco::RecoChargedCandidate > >.index(), edm::EDGetTokenT< PHGCalValidInfo >.index(), edm::EDGetTokenT< L1MuDTChambThContainer >.index(), edm::EDGetTokenT< ME0SegmentCollection >.index(), edm::EDGetTokenT< std::vector< reco::CandSecondaryVertexTagInfo > >.index(), edm::EDGetTokenT< typename edm::View< I > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPUVPattern > >.index(), edm::EDGetTokenT< CSCSegmentCollection >.index(), edm::EDGetTokenT< vector< pat::GenericParticle > >.index(), edm::EDGetTokenT< TriggerObjectStandAloneCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< ZDCDataFrame > >.index(), edm::EDGetTokenT< reco::PFJetCollection >.index(), edm::EDGetTokenT< l1extra::L1EmParticleCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PhotonRef > >.index(), edm::EDGetTokenT< edm::SortedCollection >.index(), edm::EDGetTokenT< reco::ConversionCollection >.index(), edm::EDGetTokenT< TriggerResults >.index(), edm::EDGetTokenT< L1CaloEmCollection >.index(), edm::EDGetTokenT< edm::View< reco::PFCluster > >.index(), edm::EDGetTokenT< std::vector< reco::Electron > >.index(), edm::EDGetTokenT< edm::SortedCollection< HORecHit, edm::StrictWeakOrdering< HORecHit > > >.index(), edm::EDGetTokenT< L1GctEtHadCollection >.index(), edm::EDGetTokenT< reco::MuonToTrackingParticleAssociator >.index(), edm::EDGetTokenT< PFCandidateCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::PreIdRef > >.index(), edm::EDGetTokenT< std::vector< std::vector< int > > >.index(), edm::EDGetTokenT< reco::GsfPFRecTrackCollection >.index(), edm::EDGetTokenT< RecoElectrons >.index(), edm::EDGetTokenT< reco::PFTauDiscriminator >.index(), edm::EDGetTokenT< edm::edm::ValueMap< selection_type > >.index(), edm::EDGetTokenT< reco::GsfElectronCollection >.index(), edm::EDGetTokenT< DTRecHitCollection >.index(), edm::EDGetTokenT< DcsStatusCollection >.index(), edm::EDGetTokenT< reco::SimToRecoCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFCandidate > >.index(), edm::EDGetTokenT< edm::View< reco::PFCandidate > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::GsfElectronRef > >.index(), edm::EDGetTokenT< TriggerAlgorithmCollection >.index(), edm::EDGetTokenT< L1MuDTChambPhContainer >.index(), edm::EDGetTokenT< reco::METCollection >.index(), edm::EDGetTokenT< edm::AssociationVector< PFTauRefProd, std::vector< std::vector< reco::VertexRef > > > >.index(), edm::EDGetTokenT< edm::AssociationVector< PFTauRefProd, std::vector< reco::VertexRef > > >.index(), edm::EDGetTokenT< HcalTBTriggerData >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > >.index(), edm::EDGetTokenT< std::vector< reco::PFSimParticle > >.index(), edm::EDGetTokenT< TsosVectorCollection >.index(), edm::EDGetTokenT< reco::CaloMuonCollection >.index(), edm::EDGetTokenT< MuonCollection >.index(), edm::EDGetTokenT< TriggerEventWithRefs >.index(), edm::EDGetTokenT< reco::CandidateCollection >.index(), edm::EDGetTokenT< SiPixelClusterShapeCache >.index(), edm::EDGetTokenT< edm::View< T > >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< SiStripRawDigi > >.index(), edm::EDGetTokenT< l1t::MuonBxCollection >.index(), edm::EDGetTokenT< edm::View< pat::Electron > >.index(), edm::EDGetTokenT< l1t::EtSumBxCollection >.index(), edm::EDGetTokenT< edm::OwnVector< TrackingRegion > >.index(), edm::EDGetTokenT< L1GctEtTotalCollection >.index(), edm::EDGetTokenT< L1MuGMTReadoutCollection >.index(), edm::EDGetTokenT< std::map< unsigned int, int > >.index(), edm::EDGetTokenT< L1CSCStatusDigiCollection >.index(), edm::EDGetTokenT< L1GlobalTriggerObjectMapRecord >.index(), edm::EDGetTokenT< SimHits >.index(), edm::EDGetTokenT< CastorTowerCollection >.index(), edm::EDGetTokenT< edm::ValueMap< Bool_t > >.index(), edm::EDGetTokenT< CandMatchMap >.index(), edm::EDGetTokenT< reco::IsoDepositMap >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripProcessedRawDigi > >.index(), edm::EDGetTokenT< ParticleCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::CaloClusterPtr > >.index(), edm::EDGetTokenT< reco::CandidateView >.index(), edm::EDGetTokenT< uint32_t >.index(), edm::EDGetTokenT< edm::View< reco::Photon > >.index(), edm::EDGetTokenT< HcalQIE10DigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< std::vector< reco::ShallowTagInfo > >.index(), edm::EDGetTokenT< HcalQIE11DigitizerTraits::DigiCollection >.index(), edm::EDGetTokenT< MEtoEDM >.index(), edm::EDGetTokenT< LVColl >.index(), edm::EDGetTokenT< reco::ElectronIsolationMap >.index(), edm::EDGetTokenT< DetSetVector< SiPixelCluster > >.index(), edm::EDGetTokenT< uint >.index(), edm::EDGetTokenT< edm::edm::DetSetVector< StripDigiSimLink > >.index(), edm::EDGetTokenT< std::vector< reco::edm::Ref > >.index(), edm::EDGetTokenT< edm::DetSetVector< RPCDigiSimLink > >.index(), edm::EDGetTokenT< ME0PadDigiCollection >.index(), edm::EDGetTokenT< L1GtTechnicalTriggerRecord >.index(), edm::EDGetTokenT< reco::PFDisplacedVertexCollection >.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(), edm::EDGetTokenT< edm::ValueMap< reco::PFCandidateRef > >.index(), edm::EDGetTokenT< vector< pat::Muon > >.index(), edm::EDGetTokenT< ClusterTPAssociation >.index(), edm::EDGetTokenT< reco::PFConversionCollection >.index(), edm::HLTGlobalStatus.index(), edm::RefCoreWithIndex.index(), Looper< T >.index(), pat::eventhypothesis::Looper< T >.index(), Looper< T2 >.index(), geometryXMLparser.CSCAlignable.index(), TkPhase2OTMeasurementDet.index(), DetGroup.index(), TkPixelMeasurementDet.index(), ntupleDataFormat._Object.index(), PhysicsTools::TreeReader::Value.index, gen::EvtGenLHCInterface.index, edm::TriggerResultsByName.index(), reco::TemplatedSecondaryVertexTagInfo< IPTI, VTX >::IndexedVertexTrackSelector.index, cond::SmallWORMDict.index(), NuclearInteractionFTFSimulator.index, HOTPDigiTwinMux.index(), GeomDet.index(), PhysicsTools::VarProcessor::LoopCtx.index(), reco::PFBlockElement.index(), PhysicsTools::MVAComputer::InputVar.index, VIterator< Item >.index, TkStripMeasurementDet.index(), python.cmstools.EventTree.index(), sistrip::RawToDigiUnpacker::Registry.index, SiPixelTemplateDBObject.index(), pat::TriggerPath.index(), edm::ProductResolverIndexHelper.index(), EcalHitResponse.index(), EcalTimeMapDigitizer.index(), DCCTBDataParser.index(), AlpgenParameterName.index, edm::ProductResolverIndexHelper::Matches.index(), prim_conv11.index, UECalibration.index, FourVectorHLT::PathInfo.index(), DetIdAssociator.index(), Json::Value::CZString.index(), HitDoublets.index(), SequenceTypes._SequenceCollection.index(), edm::ProductResolverIndexHelper::IndexAndNames.index(), edm::Ref< std::vector< reco::RecoTauPiZero > >.index(), edm::Ref< std::vector< reco::CaloTau > >.index(), DetSetVector< TTCluster< T > TTCluster< T >.index(), edm::Ref< HcalIsolatedTrackCandidateCollection >.index(), edm::Ref< PFDisplacedVertexCollection >.index(), edm::Ref< TrackExtraCollection >.index(), edm::Ref< L1GctHtMissCollection >.index(), edm::Ref< std::vector< SimVertex > >.index(), edm::Ref< FTLUncalibratedRecHitCollection >.index(), edm::Ref< PFMETCollection >.index(), edm::Ref< std::vector< pat::Muon > >.index(), edm::Ref< HTTTopJetTagInfoCollection >.index(), edm::Ref< reco::ElectronSeedCollection >.index(), Ref< reco::GenJetCollection >.index(), edm::Ref< edm::OwnVector< reco::BaseTagInfo, edm::ClonePolicy< reco::BaseTagInfo > > >.index(), edm::Ref< SuperClusterCollection >.index(), edm::Ref< edm::RangeMap< DetId, edm::OwnVector< SiStripRecHit1D, edm::ClonePolicy< SiStripRecHit1D > >, edm::ClonePolicy< SiStripRecHit1D > >, SiStripRecHit1D, edm::refhelper::FindUsingAdvance< edm::RangeMap< DetId, edm::OwnVector< SiStripRecHit1D, edm::ClonePolicy< SiStripRecHit1D > >, edm::ClonePolicy< SiStripRecHit1D > >, SiStripRecHit1D > >.index(), edm::Ref< edm::SortedCollection >.index(), edm::Ref< std::vector< reco::VertexRef > >.index(), edm::Ref< std::vector< reco::PreId > >.index(), edm::Ref< std::vector< reco::PFTau > >.index(), edm::Ref< std::vector< reco::CaloTauTagInfo > >.index(), edm::Ref< JPTJetCollection >.index(), edm::Ref< pat::PackedCandidateCollection >.index(), edm::Ref< reco::RecoChargedRefCandidateCollection >.index(), edm::Ref< std::vector< reco::BaseTau > >.index(), edm::Ref< TrackJetCollection >.index(), edm::Ref< CSCSegmentCollection >.index(), vector< reco::PFTau3ProngSummary >.index(), vector< reco::PFRecHit >.index(), edm::Ref< C, T, F >.index(), edm::Ref< JetEisolAssociationCollection, typename refhelper::ValueTrait< JetEisolAssociationCollection >::value, typename refhelper::FindTrait< JetEisolAssociationCollection, typename refhelper::ValueTrait< JetEisolAssociationCollection >::value >::value >.index(), edm::Ref< TauImpactParameterInfoCollection >.index(), edm::Ref< CandSecondaryVertexTagInfoCollection, typename refhelper::ValueTrait< CandSecondaryVertexTagInfoCollection >::value, typename refhelper::FindTrait< CandSecondaryVertexTagInfoCollection, typename refhelper::ValueTrait< CandSecondaryVertexTagInfoCollection >::value >::value >.index(), edm::Ref< TrackCountingTagInfoCollection, typename refhelper::ValueTrait< TrackCountingTagInfoCollection >::value, typename refhelper::FindTrait< TrackCountingTagInfoCollection, typename refhelper::ValueTrait< TrackCountingTagInfoCollection >::value >::value >.index(), vector< reco::PFTau >.index(), edm::Ref< FFTTrackJetCollection >.index(), Ref< TrackDeDxHitsCollection >.index(), vector< reco::JetID >.index(), vector< reco::PFTauTagInfo >.index(), edm::Ref< CaloTowerCollection >.index(), edm::Ref< reco::SuperClusterCollection >.index(), edm::Ref< VertexCompositeCandidateCollection >.index(), edm::Ref< BoostedDoubleSVTagInfoCollection >.index(), Ref< reco::GenParticleCollection >.index(), Ref< C, T, F >.index(), edm::Ref< PFClusterCollection >.index(), edm::Ref< CaloJetCollection >.index(), edm::Ref< PFParticleCollection >.index(), edm::Ref< ShallowTagInfoCollection, typename refhelper::ValueTrait< ShallowTagInfoCollection >::value, typename refhelper::FindTrait< ShallowTagInfoCollection, typename refhelper::ValueTrait< ShallowTagInfoCollection >::value >::value >.index(), edm::Ref< SortedCollection< HcalCalibRecHit > >.index(), edm::Ref< edm::DetSetVector< Phase2ITPixelCluster >, edm::DetSet< Phase2ITPixelCluster >, edm::refhelper::FindDetSetForDetSetVector< Phase2ITPixelCluster, edm::DetSetVector< Phase2ITPixelCluster > > >.index(), edm::Ref< BoostedDoubleSVTagInfoCollection, typename refhelper::ValueTrait< BoostedDoubleSVTagInfoCollection >::value, typename refhelper::FindTrait< BoostedDoubleSVTagInfoCollection, typename refhelper::ValueTrait< BoostedDoubleSVTagInfoCollection >::value >::value >.index(), edm::Ref< FFTJPTJetCollection, typename refhelper::ValueTrait< FFTJPTJetCollection >::value, typename refhelper::FindTrait< FFTJPTJetCollection, typename refhelper::ValueTrait< FFTJPTJetCollection >::value >::value >.index(), edm::Ref< CaloTauTagInfoCollection >.index(), edm::Ref< FFTBasicJetCollection, typename refhelper::ValueTrait< FFTBasicJetCollection >::value, typename refhelper::FindTrait< FFTBasicJetCollection, typename refhelper::ValueTrait< FFTBasicJetCollection >::value >::value >.index(), edm::Ref< EtSumBxCollection >.index(), edm::Ref< std::vector< FSimDisplacedVertex >, FSimDisplacedVertex, edm::refhelper::FindUsingAdvance< std::vector< FSimDisplacedVertex >, FSimDisplacedVertex > >.index(), vector< reco::PFTauDecayMode >.index(), edm::Ref< PFJetCollection >.index(), edm::Ref< L1GctEtMissCollection >.index(), vector< reco::PFNuclearInteraction >.index(), edm::Ref< JetCrystalsAssociationCollection >.index(), edm::Ref< std::vector< reco::PFTau3ProngSummaryCollection > >.index(), edm::Ref< HGCRecHitCollection >.index(), vector< reco::CaloTau >.index(), vector< reco::BaseTauTagInfo >.index(), edm::Ref< ConversionCollection >.index(), edm::Ref< std::vector< reco::TemplatedSecondaryVertexTagInfo > >.index(), edm::Ref< std::vector< reco::PreId >, reco::PreId, edm::refhelper::FindUsingAdvance< std::vector< reco::PreId >, reco::PreId > >.index(), vector< reco::PFCluster >.index(), vector< reco::RecoTauPiZero >.index(), edm::Ref< JetCollection >.index(), edm::Ref< GsfPFRecTrackCollection >.index(), edm::Ref< PFCandidateElectronExtraCollection >.index(), edm::Ref< CompositeCandidateCollection >.index(), edm::Ref< CaloMETCollection >.index(), edm::Ref< TrackProbabilityTagInfoCollection >.index(), edm::Ref< TrajGsfTrackAssociationCollection >.index(), edm::Ref< std::vector< reco::PFTauTransverseImpactParameterRef > >.index(), edm::Ref< PhotonCollection >.index(), edm::Ref< TriggerObjectCollection >.index(), edm::Ref< TauCollection >.index(), edm::Ref< GsfElectronCoreCollection >.index(), edm::Ref< JetFlavourMatchingCollection >.index(), edm::Ref< std::vector< reco::WMuNuCandidatePtr > >.index(), edm::Ref< IsolatedTauTagInfoCollection >.index(), edm::Ref< EcalIsolatedParticleCandidateCollection >.index(), edm::Ref< std::vector< pat::Tau > >.index(), edm::Ref< GEMCSCSegmentCollection >.index(), edm::Ref< JetTagInfoCollection >.index(), edm::Ref< TaggingVariableListCollection >.index(), edm::Ref< IsolatedPFCandidateCollection >.index(), vector< reco::PFRecTrack >.index(), edm::Ref< CandSecondaryVertexTagInfoCollection >.index(), edm::Ref< edm::HepMCProduct, HepMC::GenParticle >.index(), edm::Ref< std::vector< reco::PFRecHit > >.index(), edm::Ref< Phase2ITPixelClusterCollection, Phase2ITPixelCluster >.index(), vector< reco::BaseTau >.index(), edm::Ref< reco::CastorCellCollection >.index(), edm::Ref< FFTCaloJetCollection, typename refhelper::ValueTrait< FFTCaloJetCollection >::value, typename refhelper::FindTrait< FFTCaloJetCollection, typename refhelper::ValueTrait< FFTCaloJetCollection >::value >::value >.index(), edm::Ref< edm::OwnVector >.index(), edm::Ref< reco::RecoPFClusterRefCandidateCollection >.index(), edm::Ref< std::vector< reco::PFDisplacedTrackerVertex > >.index(), Ref< typename HandleT::element_type, typename HandleT::element_type::value_type::value_type >.index(), vector< CandSecondaryVertexTagInfo >.index(), vector< reco::PreId >.index(), edm::Ref< PFClusterMETCollection >.index(), edm::Ref< std::vector< reco::PFRecoTauChargedHadron > >.index(), edm::Ref< GsfElectronIsoCollection >.index(), edm::Ref< std::vector< reco::PFDisplacedVertex >, reco::PFDisplacedVertex, edm::refhelper::FindUsingAdvance< std::vector< reco::PFDisplacedVertex >, reco::PFDisplacedVertex > >.index(), edm::Ref< NuclearInteractionCollection >.index(), edm::Ref< L3MuonTrajectorySeedCollection >.index(), edm::Ref< GsfTrackMomConstraintAssociationCollection >.index(), vector< reco::PFTau3ProngSummaryCollection >.index(), edm::Ref< JetEisolAssociationCollection >.index(), edm::Ref< PFJetCollection, typename refhelper::ValueTrait< PFJetCollection >::value, typename refhelper::FindTrait< PFJetCollection, typename refhelper::ValueTrait< PFJetCollection >::value >::value >.index(), edm::Ref< reco::CastorEgammaCollection >.index(), edm::Ref< L1GctHFBitCountsCollection >.index(), edm::Ref< BaseTagInfoCollection >.index(), edm::Ref< L1GctEmCandCollection >.index(), edm::Ref< GsfTrackCollection >.index(), edm::Ref< CandidateCollection >.index(), edm::Ref< reco::EgammaTriggerCollection >.index(), edm::Ref< HGCUncalibratedRecHitCollection >.index(), edm::Ref< L1EmParticleCollection >.index(), edm::Ref< edmNew::DetSetVector< TTCluster< T > >, TTCluster< T > >.index(), vector< reco::HLTTau >.index(), edm::Ref< FFTCaloJetCollection >.index(), vector< reco::TrackExtrapolation >.index(), edm::Ref< std::vector< reco::Track >, reco::Track, edm::refhelper::FindUsingAdvance< std::vector< reco::Track >, reco::Track > >.index(), edm::Ref< reco::ElectronCollection >.index(), edm::Ref< PFTauCollection >.index(), vector< reco::PFTau3ProngSummaryRef >.index(), edm::Ref< DeDxHitInfoCollection >.index(), edm::Ref< L2MuonTrajectorySeedCollection >.index(), edm::Ref< TriggerConditionCollection >.index(), edm::Ref< TriggerObjectStandAloneCollection >.index(), edm::Ref< reco::HcalIsolatedTrackCandidateCollection >.index(), edm::Ref< reco::PreshowerClusterCollection >.index(), edm::Ref< reco::TrackExtraCollection >.index(), edm::Ref< edm::RangeMap< unsigned int, edm::OwnVector< FastTrackerCluster, edm::ClonePolicy< FastTrackerCluster > >, edm::ClonePolicy< FastTrackerCluster > >, FastTrackerCluster, edm::refhelper::FindUsingAdvance< edm::RangeMap< unsigned int, edm::OwnVector< FastTrackerCluster, edm::ClonePolicy< FastTrackerCluster > >, edm::ClonePolicy< FastTrackerCluster > >, FastTrackerCluster > >.index(), vector< T >.index(), edm::Ref< std::vector< reco::TrackIPTagInfo > >.index(), edm::Ref< L1CandidateBxCollection >.index(), edm::Ref< reco::GsfTrackCollection >.index(), edm::Ref< reco::RecoStandAloneMuonCandidateCollection >.index(), edm::Ref< SiPixelClusterCollectionNew, SiPixelCluster >.index(), Ref< MuonSegmentCollection >.index(), edm::Ref< PFTauDiscriminatorByIsolation >.index(), edm::Ref< reco::ElectronIDCollection >.index(), edm::Ref< L1MuonParticleCollection >.index(), DetSetVector< TTTrack< Ref_Phase2TrackerDigi_ > TTTrack< Ref_Phase2TrackerDigi_ >.index(), Ref< CastorRecHitCollection >.index(), edm::Ref< BasicJetCollection >.index(), edm::Ref< std::vector< Trajectory > >.index(), edm::Ref< std::vector< reco::NuclearInteraction > >.index(), edm::Ref< TauMassTagInfoCollection, typename refhelper::ValueTrait< TauMassTagInfoCollection >::value, typename refhelper::FindTrait< TauMassTagInfoCollection, typename refhelper::ValueTrait< TauMassTagInfoCollection >::value >::value >.index(), edm::Ref< GenMETCollection >.index(), edm::Ref< PFCandidateEGammaExtraCollection >.index(), edm::Ref< reco::SiStripElectronCollection >.index(), edm::Ref< edmNew::DetSetVector< SiStripCluster >, SiStripCluster, edmNew::DetSetVector< SiStripCluster >::FindForDetSetVector >.index(), vector< reco::WMuNuCandidate >.index(), Ref< HFRecHitCollection >.index(), DetSetVector< TTCluster< Ref_Phase2TrackerDigi_ > TTCluster< Ref_Phase2TrackerDigi_ >.index(), FindForDetSetVector.index(), ClonePolicy< FastTrackerRecHit > FastTrackerRecHit.index(), vector< FSimDisplacedVertex > FSimDisplacedVertex.index(), Ref< HSCParticleCollection >.index(), vector< pat::MET >.index(), vector< pat::Electron >.index(), Ref< reco::IsolatedPixelTrackCandidateCollection > double.index(), edm::Ref< JetBxCollection >.index(), edm::Ref< FFTTrackJetCollection, typename refhelper::ValueTrait< FFTTrackJetCollection >::value, typename refhelper::FindTrait< FFTTrackJetCollection, typename refhelper::ValueTrait< FFTTrackJetCollection >::value >::value >.index(), Ref< collection >.index(), edm::Ref< std::vector< reco::PFTau3ProngSummary > >.index(), edm::Ref< PFCandidateCollection >.index(), Ref< HBHEChannelInfoCollection >.index(), DetSetVector< Phase2ITPixelCluster >.index(), key_type.index(), Ref< HSCPDeDxInfoCollection >.index(), edm::Ref< edm::HepMCProduct, HepMC::GenVertex >.index(), edm::Ref< PFRecHitCollection >.index(), edm::Ref< SoftLeptonTagInfoCollection >.index(), Ref< reco::TrackCollection >.index(), edm::Ref< TrackIPTagInfoCollection, typename refhelper::ValueTrait< TrackIPTagInfoCollection >::value, typename refhelper::FindTrait< TrackIPTagInfoCollection, typename refhelper::ValueTrait< TrackIPTagInfoCollection >::value >::value >.index(), edm::Ref< BasicJetCollection, typename refhelper::ValueTrait< BasicJetCollection >::value, typename refhelper::FindTrait< BasicJetCollection, typename refhelper::ValueTrait< BasicJetCollection >::value >::value >.index(), vector< pat::Tau >.index(), DetSetVector< SiPixelCluster > SiPixelCluster.index(), ClonePolicy< SiStripRecHit1D > SiStripRecHit1D.index(), vector< reco::GsfPFRecTrack >.index(), edm::Ref< L1GctEtHadCollection >.index(), edm::Ref< TrackCollection >.index(), edm::Ref< GsfTrackVtxConstraintAssociationCollection >.index(), edm::Ref< std::vector< reco::PFRecTrack >, reco::PFRecTrack, edm::refhelper::FindUsingAdvance< std::vector< reco::PFRecTrack >, reco::PFRecTrack > >.index(), vector< reco::VertexRef >.index(), edm::Ref< L1GctHFRingEtSumsCollection >.index(), vector< reco::NuclearInteraction >.index(), edm::Ref< MuonBxCollection >.index(), edm::Ref< std::vector< reco::Vertex >, reco::Vertex, edm::refhelper::FindUsingAdvance< std::vector< reco::Vertex >, reco::Vertex > >.index(), edm::Ref< TrackJetCollection, typename refhelper::ValueTrait< TrackJetCollection >::value, typename refhelper::FindTrait< TrackJetCollection, typename refhelper::ValueTrait< TrackJetCollection >::value >::value >.index(), edm::Ref< reco::GsfElectronCoreCollection >.index(), vector< reco::VertexCompositeCandidate >.index(), edm::Ref< reco::HFEMClusterShapeCollection >.index(), edm::Ref< CombinedTauTagInfoCollection >.index(), edm::Ref< TriggerAlgorithmCollection >.index(), PreId.index(), edm::Ref< ElectronCollection >.index(), edm::Ref< GenericParticleCollection >.index(), edm::Ref< std::vector< reco::VertexCompositeCandidate >, reco::VertexCompositeCandidate, edm::refhelper::FindUsingAdvance< std::vector< reco::VertexCompositeCandidate >, reco::VertexCompositeCandidate > >.index(), vector< reco::PFTauTransverseImpactParameterRef >.index(), edm::Ref< EcalUncalibratedRecHitCollection >.index(), vector< reco::CaloTauTagInfo >.index(), edm::Ref< PFBlockCollection >.index(), edm::Ref< CaloJetCollection, typename refhelper::ValueTrait< CaloJetCollection >::value, typename refhelper::FindTrait< CaloJetCollection, typename refhelper::ValueTrait< CaloJetCollection >::value >::value >.index(), edm::Ref< std::vector< pat::MET > >.index(), edm::Ref< edm::OwnVector< reco::BaseTagInfo, edm::ClonePolicy< reco::BaseTagInfo > >, typename refhelper::ValueTrait< edm::OwnVector< reco::BaseTagInfo, edm::ClonePolicy< reco::BaseTagInfo > > >::value, typename refhelper::FindTrait< edm::OwnVector< reco::BaseTagInfo, edm::ClonePolicy< reco::BaseTagInfo > >, typename refhelper::ValueTrait< edm::OwnVector< reco::BaseTagInfo, edm::ClonePolicy< reco::BaseTagInfo > > >::value >::value >.index(), edm::Ref< std::vector< reco::PFDisplacedVertexCandidate >, reco::PFDisplacedVertexCandidate, edm::refhelper::FindUsingAdvance< std::vector< reco::PFDisplacedVertexCandidate >, reco::PFDisplacedVertexCandidate > >.index(), edm::Ref< edm::DetSetVector< SiPixelCluster >, edm::DetSet< SiPixelCluster >, edm::refhelper::FindDetSetForDetSetVector< SiPixelCluster, edm::DetSetVector< SiPixelCluster > > >.index(), edm::Ref< FTLRecHitCollection >.index(), edm::Ref< std::vector< IPTI > >.index(), edm::Ref< pat::PackedGenParticleCollection >.index(), edm::Ref< reco::RecoChargedCandidateCollection >.index(), edm::Ref< TrackingParticleCollection >.index(), edm::Ref< PFTau3ProngSummaryCollection >.index(), edm::Ref< PFTauVertexAssociation >.index(), edm::Ref< EMIsolatedTauTagInfoCollection >.index(), edm::Ref< PFCandidatePhotonExtraCollection >.index(), vector< reco::PFDisplacedVertex >.index(), edm::Ref< CandIPTagInfoCollection, typename refhelper::ValueTrait< CandIPTagInfoCollection >::value, typename refhelper::FindTrait< CandIPTagInfoCollection, typename refhelper::ValueTrait< CandIPTagInfoCollection >::value >::value >.index(), edm::Ref< JetMatchedPartonsCollection >.index(), edm::Ref< ME0SegmentCollection >.index(), edm::Ref< std::vector< reco::CastorJetID > >.index(), edm::Ref< reco::IsolatedPixelTrackCandidateCollection >.index(), edm::Ref< GenericJetCollection, typename refhelper::ValueTrait< GenericJetCollection >::value, typename refhelper::FindTrait< GenericJetCollection, typename refhelper::ValueTrait< GenericJetCollection >::value >::value >.index(), edm::Ref< TrackingVertexCollection >.index(), edm::Ref< CombinedTauTagInfoCollection, typename refhelper::ValueTrait< CombinedTauTagInfoCollection >::value, typename refhelper::FindTrait< CombinedTauTagInfoCollection, typename refhelper::ValueTrait< CombinedTauTagInfoCollection >::value >::value >.index(), edm::Ref< PFTau3ProngSumAssociation >.index(), edm::Ref< GenJetCollection >.index(), edm::Ref< TrackInfoTrackAssociationCollection >.index(), edm::Ref< reco::CastorClusterCollection >.index(), edm::Ref< ShallowTagInfoCollection >.index(), edm::Ref< edm::PSimHitContainer >.index(), edm::Ref< VertexCollection >.index(), edm::Ref< std::vector< reco::PFCandidate >, reco::PFCandidate, edm::refhelper::FindUsingAdvance< std::vector< reco::PFCandidate >, reco::PFCandidate > >.index(), edm::Ref< std::vector< reco::PFTauDecayMode > >.index(), edm::Ref< edm::RangeMap< DetId, edm::OwnVector< SiStripRecHit2D, edm::ClonePolicy< SiStripRecHit2D > >, edm::ClonePolicy< SiStripRecHit2D > >, SiStripRecHit2D, edm::refhelper::FindUsingAdvance< edm::RangeMap< DetId, edm::OwnVector< SiStripRecHit2D, edm::ClonePolicy< SiStripRecHit2D > >, edm::ClonePolicy< SiStripRecHit2D > >, SiStripRecHit2D > >.index(), edm::Ref< std::vector< reco::PFTau3ProngSummaryRef > >.index(), edm::Ref< CaloTauDiscriminatorAgainstElectron >.index(), edm::Ref< pat::PATTauDiscriminator >.index(), edm::Ref< TriggerFilterCollection >.index(), edm::Ref< BaseTagInfoCollection, typename refhelper::ValueTrait< BaseTagInfoCollection >::value, typename refhelper::FindTrait< BaseTagInfoCollection, typename refhelper::ValueTrait< BaseTagInfoCollection >::value >::value >.index(), edm::Ref< std::vector< reco::PFBlock >, reco::PFBlock, edm::refhelper::FindUsingAdvance< std::vector< reco::PFBlock >, reco::PFBlock > >.index(), edm::Ref< L1GctEtTotalCollection >.index(), edm::Ref< L1JetParticleCollection >.index(), edm::Ref< CaloTauDiscriminatorByIsolation >.index(), edm::Ref< edm::SimTrackContainer >.index(), edm::Ref< JetFlavourInfoMatchingCollection >.index(), edm::Ref< std::vector< reco::WMuNuCandidate > >.index(), edm::Ref< L1EtMissParticleCollection >.index(), edm::Ref< GenParticleCollection >.index(), edm::Ref< FFTJPTJetCollection >.index(), vector< reco::PFDisplacedVertexCandidate >.index(), edm::Ref< std::vector< reco::PFTauTransverseImpactParameterCollection > >.index(), PFBlock.index(), edm::Ref< JTATagInfoCollection, typename refhelper::ValueTrait< JTATagInfoCollection >::value, typename refhelper::FindTrait< JTATagInfoCollection, typename refhelper::ValueTrait< JTATagInfoCollection >::value >::value >.index(), edm::Ref< reco::CastorTowerCollection >.index(), edm::Ref< ElectronIDAssociationCollection >.index(), edm::Ref< ElectronSeedCollection >.index(), edm::Ref< reco::PreshowerClusterShapeCollection >.index(), edm::Ref< ME0MuonCollection >.index(), edm::Ref< PFDisplacedTrackerVertexCollection >.index(), edm::Ref< EGammaBxCollection >.index(), edm::Ref< PFRecTrackCollection >.index(), edm::Ref< SiPixelClusterCollection, SiPixelCluster >.index(), edm::Ref< PFClusterJetCollection, typename refhelper::ValueTrait< PFClusterJetCollection >::value, typename refhelper::FindTrait< PFClusterJetCollection, typename refhelper::ValueTrait< PFClusterJetCollection >::value >::value >.index(), Ref< C1, T1, F1 >.index(), edm::Ref< std::vector< reco::PFCluster >, reco::PFCluster, edm::refhelper::FindUsingAdvance< std::vector< reco::PFCluster >, reco::PFCluster > >.index(), vector< L1MuGMTCand >.index(), edm::Ref< CandSoftLeptonTagInfoCollection, typename refhelper::ValueTrait< CandSoftLeptonTagInfoCollection >::value, typename refhelper::FindTrait< CandSoftLeptonTagInfoCollection, typename refhelper::ValueTrait< CandSoftLeptonTagInfoCollection >::value >::value >.index(), edm::Ref< TrajTrackAssociationCollection >.index(), edm::Ref< PFTauTransverseImpactParameterCollection >.index(), edm::Ref< PFTauTagInfoCollection >.index(), edm::Ref< reco::RecoEcalCandidateCollection >.index(), edm::Ref< IsolatedTauTagInfoCollection, typename refhelper::ValueTrait< IsolatedTauTagInfoCollection >::value, typename refhelper::FindTrait< IsolatedTauTagInfoCollection, typename refhelper::ValueTrait< IsolatedTauTagInfoCollection >::value >::value >.index(), edm::Ref< PileUpPFCandidateCollection >.index(), edm::Ref< SecondaryVertexTagInfoCollection >.index(), edm::Ref< FFTBasicJetCollection >.index(), edm::Ref< std::vector< L1MuGMTCand > >.index(), edm::Ref< reco::PFConversionCollection >.index(), edm::Ref< RPCL1LinkCollection >.index(), ClonePolicy< SiStripRecHit2D > SiStripRecHit2D.index(), Ref< HcalCalibRecHitCollection >.index(), edm::Ref< TaggingVariableListCollection, typename refhelper::ValueTrait< TaggingVariableListCollection >::value, typename refhelper::FindTrait< TaggingVariableListCollection, typename refhelper::ValueTrait< TaggingVariableListCollection >::value >::value >.index(), edm::Ref< HFEMClusterShapeAssociationCollection >.index(), edm::Ref< CandSoftLeptonTagInfoCollection >.index(), edm::Ref< std::vector< reco::TrackExtrapolation > >.index(), Ref< HFPreRecHitCollection >.index(), DetSetVector< SiStripCluster >.index(), vector< FSimVertexType >.index(), edm::Ref< std::vector< CaloRecHit > >.index(), vector< FSimVertexType > FSimVertexType.index(), vector< FSimDisplacedVertex >.index(), edm::Ref< reco::PhotonCoreCollection >.index(), DetSetVector< TTStub< Ref_Phase2TrackerDigi_ > TTStub< Ref_Phase2TrackerDigi_ >.index(), PFDisplacedVertexCandidate.index(), vector< pat::Jet >.index(), edm::Ref< ParticleCollection >.index(), edm::Ref< TrackIPTagInfoCollection >.index(), edm::Ref< HemisphereCollection >.index(), vector< reco::Vertex >.index(), edm::Ref< IsolatedPixelTrackCandidateCollection >.index(), edm::Ref< reco::ConversionCollection >.index(), ClonePolicy< reco::BaseTagInfo >.index(), edm::Ref< TrackParamConstraintAssociationCollection >.index(), Ref< TCandColl >.index(), edm::Ref< MuonCollection >.index(), edm::Ref< JetCrystalsAssociationCollection, typename refhelper::ValueTrait< JetCrystalsAssociationCollection >::value, typename refhelper::FindTrait< JetCrystalsAssociationCollection, typename refhelper::ValueTrait< JetCrystalsAssociationCollection >::value >::value >.index(), edm::Ref< METCollection >.index(), edm::Ref< PFIsolatedTauTagInfoCollection >.index(), edm::Ref< SoftLeptonTagInfoCollection, typename refhelper::ValueTrait< SoftLeptonTagInfoCollection >::value, typename refhelper::FindTrait< SoftLeptonTagInfoCollection, typename refhelper::ValueTrait< SoftLeptonTagInfoCollection >::value >::value >.index(), edm::Ref< CaloTowerCollection, typename refhelper::ValueTrait< CaloTowerCollection >::value, typename refhelper::FindTrait< CaloTowerCollection, typename refhelper::ValueTrait< CaloTowerCollection >::value >::value >.index(), edm::Ref< HSCPCaloInfoCollection >.index(), edm::Ref< reco::BasicClusterCollection >.index(), edm::Ref< TrajectorySeedCollection >.index(), PFCluster.index(), edm::Ref< PFTauDecayModeAssociation >.index(), vector< reco::PFDisplacedTrackerVertex >.index(), edm::Ref< TrackMomConstraintAssociationCollection >.index(), edm::Ref< std::vector< reco::GsfPFRecTrack >, reco::GsfPFRecTrack, edm::refhelper::FindUsingAdvance< std::vector< reco::GsfPFRecTrack >, reco::GsfPFRecTrack > >.index(), edm::Ref< PhotonCoreCollection >.index(), edm::Ref< TrackVtxConstraintAssociationCollection >.index(), edm::Ref< std::vector< reco::CandIPTagInfo > >.index(), edm::Ref< EMIsolatedTauTagInfoCollection, typename refhelper::ValueTrait< EMIsolatedTauTagInfoCollection >::value, typename refhelper::FindTrait< EMIsolatedTauTagInfoCollection, typename refhelper::ValueTrait< EMIsolatedTauTagInfoCollection >::value >::value >.index(), edm::Ref< CandIPTagInfoCollection >.index(), edm::Ref< std::vector< reco::PFV0 > >.index(), edm::Ref< std::vector< reco::PFTauTagInfo > >.index(), edm::Ref< FFTPFJetCollection, typename refhelper::ValueTrait< FFTPFJetCollection >::value, typename refhelper::FindTrait< FFTPFJetCollection, typename refhelper::ValueTrait< FFTPFJetCollection >::value >::value >.index(), edm::Ref< reco::PhotonCollection >.index(), edm::Ref< reco::ClusterShapeCollection >.index(), edm::Ref< PFTauVertexVAssociation >.index(), edm::Ref< JetTagInfoCollection, typename refhelper::ValueTrait< JetTagInfoCollection >::value, typename refhelper::FindTrait< JetTagInfoCollection, typename refhelper::ValueTrait< JetTagInfoCollection >::value >::value >.index(), edm::Ref< EmulatedME0SegmentCollection >.index(), edm::Ref< JetPiZeroAssociation >.index(), edm::Ref< reco::GsfTrackExtraCollection >.index(), edm::Ref< GenJetCollection, typename refhelper::ValueTrait< GenJetCollection >::value, typename refhelper::FindTrait< GenJetCollection, typename refhelper::ValueTrait< GenJetCollection >::value >::value >.index(), edm::Ref< L1HFRingsCollection >.index(), edm::Ref< FFTPFJetCollection >.index(), edm::Ref< TriggerPathCollection >.index(), edm::Ref< PFJetChargedHadronAssociation >.index(), edm::Ref< vector< vector< edm::Ref< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit, edm::refhelper::FindUsingAdvance< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit > > > >, vector< edm::Ref< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit, edm::refhelper::FindUsingAdvance< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit > > >, edm::refhelper::FindUsingAdvance< vector< vector< edm::Ref< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit, edm::refhelper::FindUsingAdvance< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit > > > >, vector< edm::Ref< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit, edm::refhelper::FindUsingAdvance< edm::OwnVector< FastTrackerRecHit, edm::ClonePolicy< FastTrackerRecHit > >, FastTrackerRecHit > > > > >.index(), edm::Ref< GEMSegmentCollection >.index(), edm::Ref< CATopJetTagInfoCollection >.index(), edm::Ref< PFCandidateCollection, typename refhelper::ValueTrait< PFCandidateCollection >::value, typename refhelper::FindTrait< PFCandidateCollection, typename refhelper::ValueTrait< PFCandidateCollection >::value >::value >.index(), edm::Ref< L1GctJetCandCollection >.index(), edm::Ref< TrackCountingTagInfoCollection >.index(), edm::Ref< std::vector< reco::BaseTauTagInfo > >.index(), edm::Ref< CastorClusterCollection >.index(), edm::Ref< Phase2ITPixelClusterCollectionNew, Phase2ITPixelCluster >.index(), edm::Ref< PFClusterJetCollection >.index(), vector< reco::PFTauTransverseImpactParameter >.index(), ClonePolicy< SiStripRecHit1D >.index(), ClonePolicy< FastTrackerRecHit >.index(), vector< reco::PFRecoTauChargedHadron >.index(), Ref< HORecHitCollection >.index(), edm::Ref< Container >.index(), edm::Ref< std::vector< reco::PFTauTransverseImpactParameter > >.index(), PFDisplacedVertex.index(), ClonePolicy< SiStripRecHit2D >.index(), edm::Ref< FFTGenJetCollection >.index(), edm::Ref< std::vector< reco::PFNuclearInteraction > >.index(), vector< reco::WMuNuCandidatePtr >.index(), Ref< HBHERecHitCollection >.index(), vector< pat::Muon >.index(), edm::Ref< EcalRecHitCollection >.index(), edm::Ref< reco::CastorJetCollection >.index(), edm::Ref< std::vector< reco::HLTTau > >.index(), edm::Ref< GenericJetCollection >.index(), edm::Ref< std::vector< TrackingParticle >, TrackingParticle, edm::refhelper::FindUsingAdvance< std::vector< TrackingParticle >, TrackingParticle > >.index(), GsfPFRecTrack.index(), edm::Ref< reco::ConvBremSeedCollection >.index(), edm::Ref< TauBxCollection >.index(), edm::Ref< FFTGenJetCollection, typename refhelper::ValueTrait< FFTGenJetCollection >::value, typename refhelper::FindTrait< FFTGenJetCollection, typename refhelper::ValueTrait< FFTGenJetCollection >::value >::value >.index(), edm::Ref< L1GctJetCountsCollection >.index(), edm::Ref< std::vector< reco::PFJet >, reco::PFJet, edm::refhelper::FindUsingAdvance< std::vector< reco::PFJet >, reco::PFJet > >.index(), edm::Ref< SortedCollection< HBHEChannelInfo > >.index(), DetSetVector< SiPixelCluster >.index(), VertexCompositeCandidate.index(), edm::Ref< PFTauTIPAssociation >.index(), edm::Ref< std::vector< FSimVertexType >, FSimVertexType, edm::refhelper::FindUsingAdvance< std::vector< FSimVertexType >, FSimVertexType > >.index(), edm::Ref< std::vector< reco::Muon > >.index(), edm::Ref< TrackingRecHitCollection >.index(), edm::Ref< std::vector< reco::MuonTrackLinks > >.index(), edm::Ref< TrackProbabilityTagInfoCollection, typename refhelper::ValueTrait< TrackProbabilityTagInfoCollection >::value, typename refhelper::FindTrait< TrackProbabilityTagInfoCollection, typename refhelper::ValueTrait< TrackProbabilityTagInfoCollection >::value >::value >.index(), edm::Ref< std::vector< std::vector< reco::VertexRef > > >.index(), Ref< PFClusterShapeAssociationCollection >.index(), edm::Ref< JTATagInfoCollection >.index(), edm::Ref< TrackCandidateSeedAssociationCollection >.index(), edm::Ref< TrackInfoCollection >.index(), edm::Ref< reco::GsfElectronCollection >.index(), edm::Ref< std::vector< pat::Electron > >.index(), Ref< ZDCRecHitCollection >.index(), edm::Ref< TauImpactParameterInfoCollection, typename refhelper::ValueTrait< TauImpactParameterInfoCollection >::value, typename refhelper::FindTrait< TauImpactParameterInfoCollection, typename refhelper::ValueTrait< TauImpactParameterInfoCollection >::value >::value >.index(), Ref< T >.index(), edm::Ref< PFTauDiscriminator >.index(), edm::Ref< std::vector< L2MuonTrajectorySeed >, L2MuonTrajectorySeed, edm::refhelper::FindUsingAdvance< std::vector< L2MuonTrajectorySeed >, L2MuonTrajectorySeed > >.index(), edm::Ref< DTRecSegment4DCollection >.index(), edm::Ref< std::vector< reco::JetID > >.index(), vector< reco::PFBlock >.index(), PFRecTrack.index(), edm::Ref< TauMassTagInfoCollection >.index(), edm::Ref< reco::GenJetCollection, typename refhelper::ValueTrait< reco::GenJetCollection >::value, typename refhelper::FindTrait< reco::GenJetCollection, typename refhelper::ValueTrait< reco::GenJetCollection >::value >::value >.index(), vector< reco::PFTauTransverseImpactParameterCollection >.index(), edm::Ref< BasicClusterShapeAssociationCollection >.index(), vector< reco::CastorJetID >.index(), edm::Ref< SecondaryVertexTagInfoCollection, typename refhelper::ValueTrait< SecondaryVertexTagInfoCollection >::value, typename refhelper::FindTrait< SecondaryVertexTagInfoCollection, typename refhelper::ValueTrait< SecondaryVertexTagInfoCollection >::value >::value >.index(), edm::Ref< GsfTrackExtraCollection >.index(), edm::Ref< std::vector< pat::Jet > >.index(), edm::Ref< CaloTauDiscriminator >.index(), vector< reco::PFV0 >.index(), edm::Ref< GsfElectronIsoNumCollection >.index(), edm::Ref< std::vector< reco::Vertex > >.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().

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

Definition at line 386 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findAllNext().

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

Definition at line 392 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findNextSiblings().

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

Definition at line 410 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findParents().

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

Definition at line 398 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findAllPrevious().

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

Definition at line 404 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.findPreviousSiblings().

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

Definition at line 144 of file BeautifulSoup.py.

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

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

Definition at line 159 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.

160  myParent = self.parent
161  myIndex = self.parent.index(self)
162  self.extract()
163  reversedChildren = list(self.contents)
164  reversedChildren.reverse()
165  for child in reversedChildren:
166  myParent.insert(myIndex, child)
167 
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 132 of file BeautifulSoup.py.

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

Definition at line 417 of file BeautifulSoup.py.

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

417  def substituteEncoding(self, str, encoding=None):
418  encoding = encoding or "utf-8"
419  return str.replace("%SOUP-ENCODING%", encoding)
420 
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 421 of file BeautifulSoup.py.

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

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

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

Member Data Documentation

BeautifulSoup.PageElement.next

Definition at line 137 of file BeautifulSoup.py.

BeautifulSoup.PageElement.nextSibling
BeautifulSoup.PageElement.parent

Definition at line 135 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(), argparse.HelpFormatter._Section.format_help(), python.rootplot.argparse.HelpFormatter._Section.format_help(), 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 138 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.extract().