CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Static 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
 

Static Public Attributes

 BARE_AMPERSAND_OR_BRACKET
 
 fetchNextSiblings
 
 fetchParents
 
 fetchPrevious
 
 fetchPreviousSiblings
 
 XML_ENTITIES_TO_SPECIAL_CHARS
 
 XML_SPECIAL_CHARS_TO_ENTITIES
 

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

◆ _findAll()

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

Definition at line 348 of file BeautifulSoup.py.

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 

References genfragment_ptgun_cfg.generator.

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

◆ _findOne()

def BeautifulSoup.PageElement._findOne (   self,
  method,
  name,
  attrs,
  text,
**  kwargs 
)
private

Definition at line 341 of file BeautifulSoup.py.

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 

References AlcaSiPixelAliHarvester0T_cff.method.

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

◆ _invert()

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 

◆ _lastRecursiveChild()

def BeautifulSoup.PageElement._lastRecursiveChild (   self)
private

Definition at line 197 of file BeautifulSoup.py.

197  def _lastRecursiveChild(self):
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 

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

◆ _sub_entity()

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.

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 

References BeautifulSoup.PageElement.XML_SPECIAL_CHARS_TO_ENTITIES.

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

◆ append()

def BeautifulSoup.PageElement.append (   self,
  tag 
)
Appends the given tag to the contents of this tag.

Definition at line 263 of file BeautifulSoup.py.

263  def append(self, tag):
264  """Appends the given tag to the contents of this tag."""
265  self.insert(len(self.contents), tag)
266 

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

Referenced by BeautifulSoup.Tag.__setitem__(), diclist.diclist.add(), BeautifulSoup.BeautifulStoneSoup.handle_data(), BeautifulSoup.BeautifulStoneSoup.pushTag(), BeautifulSoup.Tag.setString(), and BeautifulSoup.BeautifulStoneSoup.unknown_starttag().

◆ extract()

def BeautifulSoup.PageElement.extract (   self)
Destructively rips this element out of the tree.

Definition at line 168 of file BeautifulSoup.py.

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 

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

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

◆ findAllNext()

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

272  def findAllNext(self, name=None, attrs={}, text=None, limit=None,
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 

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

Referenced by BeautifulSoup.PageElement.findNext().

◆ findAllPrevious()

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

298  def findAllPrevious(self, name=None, attrs={}, text=None, limit=None,
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)

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

Referenced by BeautifulSoup.PageElement.findPrevious().

◆ findNext()

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.

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 

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

◆ findNextSibling()

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.

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 

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

◆ findNextSiblings()

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

285  def findNextSiblings(self, name=None, attrs={}, text=None, limit=None,
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)

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

Referenced by BeautifulSoup.PageElement.findNextSibling().

◆ findParent()

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.

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 

References BeautifulSoup.PageElement.findParents().

◆ findParents()

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.

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)

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

Referenced by BeautifulSoup.PageElement.findParent().

◆ findPrevious()

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.

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 

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

◆ findPreviousSibling()

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.

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 

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

◆ findPreviousSiblings()

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

312  def findPreviousSiblings(self, name=None, attrs={}, text=None,
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)

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

Referenced by BeautifulSoup.PageElement.findPreviousSibling().

◆ insert()

def BeautifulSoup.PageElement.insert (   self,
  position,
  newChild 
)

Definition at line 204 of file BeautifulSoup.py.

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 

References L1GctProcessor::Pipeline< T >.contents, FastLineRecognition::Cluster.contents, dqm_interfaces.DirFetcher.contents, BeautifulSoup.Tag.contents, MatchParam.index, OAQualityTranslator.index(), TShapeAnalysis.index, EncodedTruthId.index(), Phase2TrackerClusterizerArray.index(), AlpgenParTokens.index, SortObject.index, CastorChannelCoder.index(), l1t::MuonCaloSum.index(), TICLSeedingRegion.index, L1GctFibreWord.index(), MkFitHitIndexMap::MkFitHit.index(), L1TUtmCutValue.index, CovarianceParameterization.index(), edm::ElementID.index(), helper::MasterCollection< C1 >.index(), Grid1D.index(), ImpactPoint.index, pat::Conversion.index(), btag::SimpleMatrix< T >.index(), btag::SimpleMatrix< Delta >.index(), edm::soa::impl::FoundIndex< I >.index, EcalTrigPrimCompactColl.index(), EcalUncalibRecHitRatioMethodAlgo< C >::Ratio.index, CSCChamberFitter.index(), SiPixelCPEGenericDBErrorParametrization.index(), edm::ProcessBlockPrincipal.index(), MCPdgIndexFilter.index, edm::test::ESPutTokenT< T >.index(), CharmTagger::MVAVar.index, HeavyIonCSVTagger::MVAVar.index, edm::soa::impl::GetIndex< I, T, TPL >.index, tmtt::TP.index(), MFGrid3D.index(), EcalUncalibRecHitRatioMethodAlgo< C >::Tmax.index, FWModelId.index(), SiPixelArrayBuffer.index(), L1RecoMatch.index(), SiPixelTemplateDBObject::Reader.index(), SeedingLayerSetsHits::SeedingLayer.index(), edm::ESGetTokenGeneric.index(), MuonErrorMatrix.index(), CSCAnodeData2007.index(), edm::EDGetToken.index(), edm::EDPutToken.index(), HGCalHistoSeedingImpl::HistogramT< T >.index(), helper::MasterCollection< edm::View< T > >.index(), edm::LuminosityBlockPrincipal.index(), Grid3D.index(), TTDTC.index(), edm::HLTPathStatus.index(), L1Phase2MuDTPhDigi.index(), muonisolation::IsolatorByNominalEfficiency::ConeSizes.index(), TaggingVariablePlotter::VariableConfig::Plot.index, pos::PixelDACScanRange.index(), UETableProducer.index, edm::RunPrincipal.index(), MFGrid.index(), Phase2Tracker::Phase2TrackerDigiProducer::Registry.index, L1CaloEmCand.index(), IsolatedPixelTrackCandidateProducer::seedAtEC.index, SiPixelGenErrorDBObject.index(), SiPixel2DTemplateDBObject.index(), edm::LuminosityBlockForOutput.index(), MVAVar.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< T, N, D >.index, geometryXMLparser.DTAlignable.index(), CSCAnodeData2006.index(), edm::LuminosityBlock.index(), NuclearInteractionSimulator.index(), edm::HLTGlobalStatus.index(), DetGroup.index(), edm::Run.index(), edm::ESGetToken< DDSpecParRegistry, DDSpecParRegistryRcd >.index(), edm::ESGetToken< RPCInverseAMCLinkMap, RPCInverseTwinMuxLinkMapRcd >.index(), edm::ESGetToken< RecoIdealGeometry, CSCRecoGeometryRcd >.index(), edm::ESGetToken< Alignments, DTAlignmentRcd >.index(), edm::ESGetToken< FastTimeGeometry, IdealGeometryRecord >.index(), edm::ESGetToken< RPCEMap, RPCEMapRcd >.index(), edm::ESGetToken< cond::persistency::KeyList, DTKeyedConfigListRcd >.index(), edm::ESGetToken< EcalElectronicsMapping, EcalMappingRcd >.index(), edm::ESGetToken< HcalTrigTowerGeometry, CaloGeometryRecord >.index(), edm::ESGetToken< PPSAlignmentConfig, PPSAlignmentConfigRcd >.index(), edm::ESGetToken< GetType_t, Record_t >.index(), edm::ESGetToken< L1TGlobalPrescalesVetos, L1TGlobalPrescalesVetosRcd >.index(), edm::ESGetToken< L1RPCConeBuilder, L1RPCConeBuilderRcd >.index(), edm::ESGetToken< DDDetector, IdealMagneticFieldRecord >.index(), edm::ESGetToken< EcalMustacheSCParameters, EcalMustacheSCParametersRcd >.index(), edm::ESGetToken< SiPixelFedCablingMap, SiPixelFedCablingMapRcd >.index(), edm::ESGetToken< PhysicsTools::Calibration::MVAComputerContainer, BTauGenericMVAJetTagComputerRcd >.index(), edm::ESGetToken< BeamSpotOnlineObjects, BeamSpotOnlineLegacyObjectsRcd >.index(), edm::ESGetToken< DetGeomDesc, IdealGeometryRecord >.index(), edm::ESGetToken< DTReadOutMapping, DTReadOutMappingRcd >.index(), edm::ESGetToken< GBRForest, GBRWrapperRcd >.index(), edm::ESGetToken< HcalRecoParams, HcalChannelPropertiesAuxRecord >.index(), edm::ESGetToken< FileBlob, GeometryFileRcd >.index(), edm::ESGetToken< ESCondObjectContainer, ESChannelStatusRcd >.index(), edm::ESGetToken< CaloSubdetectorGeometry, EcalPreshowerGeometryRecord >.index(), edm::ESGetToken< ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd >.index(), edm::ESGetToken< CSCObjectMap, MuonGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalPedestalsRcd >.index(), edm::ESGetToken< DTConfigManager, DTConfigManagerRcd >.index(), edm::ESGetToken< L1CaloEcalScale, L1CaloEcalScaleRcd >.index(), edm::ESGetToken< QGLikelihoodObject, QGLikelihoodRcd >.index(), edm::ESGetToken< TrackerTopology, TrackerTopologyRcd >.index(), edm::ESGetToken< GEMGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< EcalSamplesCorrelation, EcalSamplesCorrelationRcd >.index(), edm::ESGetToken< L1GtPrescaleFactors, L1GtPrescaleFactorsTechTrigRcd >.index(), edm::ESGetToken< HcalTopology, HcalRecNumberingRecord >.index(), edm::ESGetToken< L1MuTriggerScales, L1MuTriggerScalesRcd >.index(), edm::ESGetToken< L1CaloGeometry, L1CaloGeometryRecord >.index(), edm::ESGetToken< AlignmentErrorsExtended, CSCAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< CSCRecoDigiParameters, CSCRecoDigiParametersRcd >.index(), edm::ESGetToken< DetIdAssociator, DetIdAssociatorRecord >.index(), edm::ESGetToken< SiStripBackPlaneCorrection, SiStripBackPlaneCorrectionRcd >.index(), edm::ESGetToken< LHCInterpolatedOpticalFunctionsSetCollection, CTPPSInterpolatedOpticsRcd >.index(), edm::ESGetToken< Alignments, HEAlignmentRcd >.index(), edm::ESGetToken< RecoIdealGeometry, GEMRecoGeometryRcd >.index(), edm::ESGetToken< DTHVStatus, DTHVStatusRcd >.index(), edm::ESGetToken< HGCalGeometry, IdealGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalTPGLinearizationConstRcd >.index(), edm::ESGetToken< cms::DDCompactView, IdealMagneticFieldRecord >.index(), edm::ESGetToken< SiStripPedestals, SiStripPedestalsRcd >.index(), edm::ESGetToken< RPCLBLinkMap, RPCLBLinkMapRcd >.index(), edm::ESGetToken< AlCaRecoTriggerBits, AlCaRecoTriggerBitsRcd >.index(), edm::ESGetToken< SiPixel2DTemplateDBObject, SiPixel2DTemplateDBObjectESProducerRcd >.index(), edm::ESGetToken< PGeometricDet, IdealGeometryRecord >.index(), edm::ESGetToken< CaloGeometry, CaloGeometryRecord >.index(), edm::ESGetToken< HepPDT::ParticleDataTable, edm::DefaultRecord >.index(), edm::ESGetToken< L1CaloEtScale, L1JetEtScaleRcd >.index(), edm::ESGetToken< L1TriggerKeyListExt, L1TriggerKeyListExtRcd >.index(), edm::ESGetToken< SiPixelQuality, SiPixelQualityFromDbRcd >.index(), edm::ESGetToken< CSCBadStrips, CSCBadStripsRcd >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalLaserAlphasRcd >.index(), edm::ESGetToken< TTUBoardSpecs, TTUBoardSpecsRcd >.index(), edm::ESGetToken< EcalTimeOffsetConstant, EcalTimeOffsetConstantRcd >.index(), edm::ESGetToken< TrackerTopology, IdealGeometryRecord >.index(), edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskTechTrigRcd >.index(), edm::ESGetToken< SiStripApvGain, SiStripApvGain3Rcd >.index(), edm::ESGetToken< FastTimeTopology, IdealGeometryRecord >.index(), edm::ESGetToken< Alignments, HFAlignmentRcd >.index(), edm::ESGetToken< MuonGeometryConstants, IdealGeometryRecord >.index(), edm::ESGetToken< HcalElectronicsMap, HcalElectronicsMapRcd >.index(), edm::ESGetToken< SiStripRegionCabling, SiStripRegionCablingRcd >.index(), edm::ESGetToken< RPCAMCLinkMap, RPCTwinMuxLinkMapRcd >.index(), edm::ESGetToken< VectorHitBuilderAlgorithm, TkPhase2OTCPERecord >.index(), edm::ESGetToken< DDCompactView, IdealMagneticFieldRecord >.index(), edm::ESGetToken< ProductT, RecordT >.index(), edm::ESGetToken< SiPixelTemplateDBObject, SiPixelTemplateDBObjectESProducerRcd >.index(), edm::ESGetToken< L1MuGMTChannelMask, L1MuGMTChannelMaskRcd >.index(), edm::ESGetToken< L1MuGMTParameters, L1MuGMTParametersRcd >.index(), edm::ESGetToken< L1MuCSCTFConfiguration, L1MuCSCTFConfigurationRcd >.index(), edm::ESGetToken< HcalRecoParams, HcalRecoParamsRcd >.index(), edm::ESGetToken< CaloSubdetectorGeometry, CastorGeometryRecord >.index(), edm::ESGetToken< L1TTwinMuxParams, L1TTwinMuxParamsRcd >.index(), edm::ESGetToken< CaloSubdetectorGeometry, ZDCGeometryRecord >.index(), edm::ESGetToken< DTObjectMap, MuonGeometryRecord >.index(), edm::ESGetToken< RecoIdealGeometry, ME0RecoGeometryRcd >.index(), edm::ESGetToken< L1RPCHwConfig, L1RPCHwConfigRcd >.index(), edm::ESGetToken< CSCDBChipSpeedCorrection, CSCDBChipSpeedCorrectionRcd >.index(), edm::ESGetToken< L1RCTChannelMask, L1RCTChannelMaskRcd >.index(), edm::ESGetToken< D, IdealGeometryRecord >.index(), edm::ESGetToken< EcalSeverityLevelAlgo, EcalSeverityLevelAlgoRcd >.index(), edm::ESGetToken< CaloSubdetectorGeometry, IdealGeometryRecord >.index(), edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskVetoAlgoTrigRcd >.index(), edm::ESGetToken< L1GtPrescaleFactors, L1GtPrescaleFactorsAlgoTrigRcd >.index(), edm::ESGetToken< EcalTPGSlidingWindow, EcalTPGSlidingWindowRcd >.index(), edm::ESGetToken< HcalLongRecoParams, HcalLongRecoParamsRcd >.index(), edm::ESGetToken< GlobalTrackingGeometry, GlobalTrackingGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalTPGCrystalStatusRcd >.index(), edm::ESGetToken< PixelClusterParameterEstimator, TkPixelCPERecord >.index(), edm::ESGetToken< SiStripRecHitMatcher, TkStripCPERecord >.index(), edm::ESGetToken< TrajectorySmoother, TrajectoryFitterRecord >.index(), edm::ESGetToken< FastTimeDDDConstants, IdealGeometryRecord >.index(), edm::ESGetToken< AlignmentErrorsExtended, TrackerAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< CentralityTable, HeavyIonRcd >.index(), edm::ESGetToken< CSCDBCrosstalk, CSCDBCrosstalkRcd >.index(), edm::ESGetToken< TransientTrackingRecHitBuilder, TransientRecHitRecord >.index(), edm::ESGetToken< L1CaloHcalScale, L1CaloHcalScaleRcd >.index(), edm::ESGetToken< FastTimeParameters, IdealGeometryRecord >.index(), edm::ESGetToken< L1GtParameters, L1GtParametersRcd >.index(), edm::ESGetToken< L1TMuonEndCapForest, L1TMuonEndCapForestRcd >.index(), edm::ESGetToken< EcalLaserAPDPNRatios, EcalLaserAPDPNRatiosMCRcd >.index(), edm::ESGetToken< JetTagComputer, JetTagComputerRecord >.index(), edm::ESGetToken< ESRecHitRatioCuts, ESRecHitRatioCutsRcd >.index(), edm::ESGetToken< L1MuCSCPtLut, L1MuCSCPtLutRcd >.index(), edm::ESGetToken< L1TMuonEndCapParams, L1TMuonEndCapParamsRcd >.index(), edm::ESGetToken< EcalSCDynamicDPhiParameters, EcalSCDynamicDPhiParametersRcd >.index(), edm::ESGetToken< SiPixelQuality, SiPixelQualityRcd >.index(), edm::ESGetToken< JME::JetResolutionObject, JetResolutionScaleFactorRcd >.index(), edm::ESGetToken< PGeometricTimingDet, IdealGeometryRecord >.index(), edm::ESGetToken< L1RPCHsbConfig, L1RPCHsbConfigRcd >.index(), edm::ESGetToken< MultiGaussianStateMerger< 5 >, TrackingComponentsRecord >.index(), edm::ESGetToken< ParticleDataTable, PDTRecord >.index(), edm::ESGetToken< CastorRecoParams, CastorRecoParamsRcd >.index(), edm::ESGetToken< TrackAlgoPriorityOrder, CkfComponentsRecord >.index(), edm::ESGetToken< L1MuTriggerPtScale, L1MuTriggerPtScaleRcd >.index(), edm::ESGetToken< HcalSeverityLevelComputer, HcalSeverityLevelComputerRcd >.index(), edm::ESGetToken< CaloTowerConstituentsMap, CaloGeometryRecord >.index(), edm::ESGetToken< TrajectoryFitter, TrajectoryFitterRecord >.index(), edm::ESGetToken< CSCBadChambers, CSCBadChambersRcd >.index(), edm::ESGetToken< CSCDBGains, CSCDBGainsRcd >.index(), edm::ESGetToken< EcalSampleMask, EcalSampleMaskRcd >.index(), edm::ESGetToken< MEtXYcorrectParametersCollection, MEtXYcorrectRecord >.index(), edm::ESGetToken< L1GctJetFinderParams, L1GctJetFinderParamsRcd >.index(), edm::ESGetToken< ClusterParameterEstimator< Phase2TrackerCluster1D >, TkPhase2OTCPERecord >.index(), edm::ESGetToken< L1TGlobalParameters, L1TGlobalParametersRcd >.index(), edm::ESGetToken< MagFieldConfig, IdealMagneticFieldRecord >.index(), edm::ESGetToken< MagFieldConfig, MagFieldConfigRcd >.index(), edm::ESGetToken< CaloParams, L1TCaloParamsRcd >.index(), edm::ESGetToken< CSCChamberMap, CSCChamberMapRcd >.index(), edm::ESGetToken< GEMDeadStrips, GEMDeadStripsRcd >.index(), edm::ESGetToken< SiPixelTemplateDBObject, SiPixelTemplateDBObjectRcd >.index(), edm::ESGetToken< SiPhase2OuterTrackerLorentzAngle, SiPhase2OuterTrackerLorentzAngleRcd >.index(), edm::ESGetToken< SiStripConfObject, SiStripConfObjectRcd >.index(), edm::ESGetToken< RecoIdealGeometry, RPCRecoGeometryRcd >.index(), edm::ESGetToken< EcalTPGWeightIdMap, EcalTPGWeightIdMapRcd >.index(), edm::ESGetToken< DistanceBetweenComponents< N >, TrackingComponentsRecord >.index(), edm::ESGetToken< TTStubAlgorithm< T >, TTStubAlgorithmRecord >.index(), edm::ESGetToken< QGLikelihoodSystematicsObject, QGLikelihoodSystematicsRcd >.index(), edm::ESGetToken< SiPixelGenErrorDBObject, SiPixelGenErrorDBObjectRcd >.index(), edm::ESGetToken< HcalChannelQuality, HcalChannelQualityRcd >.index(), edm::ESGetToken< ESEEIntercalibConstants, ESEEIntercalibConstantsRcd >.index(), edm::ESGetToken< CSCDBPedestals, CSCDBPedestalsRcd >.index(), edm::ESGetToken< CTPPSGeometry, VeryForwardRealGeometryRecord >.index(), edm::ESGetToken< CaloTopology, CaloTopologyRecord >.index(), edm::ESGetToken< HcalDDDRecConstants, HcalRecNumberingRecord >.index(), edm::ESGetToken< Source, Record >.index(), edm::ESGetToken< ESCondObjectContainer, ESPedestalsRcd >.index(), edm::ESGetToken< CastorGainWidths, CastorGainWidthsRcd >.index(), edm::ESGetToken< TkDetMap, TrackerTopologyRcd >.index(), ESGetToken< EcalLaserAlphas, EcalLaserAlphasRcd >.index(), ESGetToken< EcalLaserAPDPNRatiosRef, EcalLaserAPDPNRatiosRefRcd >.index(), edm::ESGetToken< TTStubAlgorithm, TTStubAlgorithmRecord >.index(), ESGetToken< EcalLinearCorrections, EcalLinearCorrectionsRcd >.index(), edm::ESGetToken< CTPPSRPAlignmentCorrectionsData, ALIGNMENT_REC >.index(), edm::ESGetToken< HcalFlagHFDigiTimeParams, HcalFlagHFDigiTimeParamsRcd >.index(), edm::ESGetToken< FileBlob, MFGeometryFileRcd >.index(), edm::ESGetToken< AlignmentErrorsExtended, MTDAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< MTDTopology, MTDTopologyRcd >.index(), ESGetToken< EcalChannelStatus, EcalChannelStatusRcd >.index(), edm::ESGetToken< ESGain, ESGainRcd >.index(), edm::ESGetToken< CSCBadWires, CSCBadWiresRcd >.index(), edm::ESGetToken< SiStripGain, SiStripGainRcd >.index(), edm::ESGetToken< PPSTimingCalibration, PPSTimingCalibrationRcd >.index(), edm::ESGetToken< CaloTowerTopology, HcalRecNumberingRecord >.index(), edm::ESGetToken< L1TMuonGlobalParams, L1TMuonGlobalParamsRcd >.index(), edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskVetoTechTrigRcd >.index(), ESGetToken< Product, RealRecord >.index(), edm::ESGetToken< HcalDbService, HcalDbRecord >.index(), edm::ESGetToken< EcalSRSettings, EcalSRSettingsRcd >.index(), edm::ESGetToken< HcalLutMetadata, HcalLutMetadataRcd >.index(), edm::ESGetToken< DetGeomDesc, VeryForwardRealGeometryRecord >.index(), edm::ESGetToken< CastorElectronicsMap, CastorElectronicsMapRcd >.index(), edm::ESGetToken< MTDDetLayerGeometry, MTDRecoGeometryRecord >.index(), edm::ESGetToken< EcalTPGLutGroup, EcalTPGLutGroupRcd >.index(), edm::ESGetToken< EcalTPGWeightGroup, EcalTPGWeightGroupRcd >.index(), edm::ESGetToken< ParticleDataTable, edm::DefaultRecord >.index(), edm::ESGetToken< CaloSubdetectorGeometry, CaloTowerGeometryRecord >.index(), edm::ESGetToken< CaloSubdetectorGeometry, EcalBarrelGeometryRecord >.index(), ESGetToken< T, R >.index(), edm::ESGetToken< AlignmentSurfaceDeformations, MTDSurfaceDeformationRcd >.index(), edm::ESGetToken< L1TMuonBarrelParams, L1TMuonBarrelParamsRcd >.index(), edm::ESGetToken< L1GctChannelMask, L1GctChannelMaskRcd >.index(), edm::ESGetToken< L1TUtmTriggerMenu, L1TUtmTriggerMenuRcd >.index(), edm::ESGetToken< HGCalParameters, IdealGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalChannelStatusRcd >.index(), edm::ESGetToken< L1GtStableParameters, L1GtStableParametersRcd >.index(), edm::ESGetToken< PTrackerParameters, PTrackerParametersRcd >.index(), edm::ESGetToken< HcalTimeSlew, HcalTimeSlewRecord >.index(), edm::ESGetToken< HcalTB02Parameters, IdealGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalLaserAPDPNRatiosRefRcd >.index(), edm::ESGetToken< CTPPSPixelAnalysisMask, CTPPSPixelAnalysisMaskRcd >.index(), edm::ESGetToken< RBCBoardSpecs, RBCBoardSpecsRcd >.index(), edm::ESGetToken< TotemDAQMapping, TotemReadoutRcd >.index(), edm::ESGetToken< CaloParams, L1TCaloParamsO2ORcd >.index(), edm::ESGetToken< SimBeamSpotObjects, SimBeamSpotObjectsRcd >.index(), edm::ESGetToken< SiStripApvGain, SiStripApvGainSimRcd >.index(), edm::ESGetToken< NavigationSchool, NavigationSchoolRecord >.index(), edm::ESGetToken< SiStripBaseDelay, SiStripBaseDelayRcd >.index(), edm::ESGetToken< ProductType, RecordType >.index(), edm::ESGetToken< CastorDbService, CastorDbRecord >.index(), edm::ESGetToken< CTPPSPixelDAQMapping, CTPPSPixelDAQMappingRcd >.index(), edm::ESGetToken< L1MuGMTScales, L1MuGMTScalesRcd >.index(), edm::ESGetToken< EcalLaserDbService, EcalLaserDbRecord >.index(), edm::ESGetToken< ESMIPToGeVConstant, ESMIPToGeVConstantRcd >.index(), edm::ESGetToken< RPCGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalTimeCalibConstantsRcd >.index(), edm::ESGetToken< EcalTBWeights, EcalTBWeightsRcd >.index(), edm::ESGetToken< TrackProbabilityCalibration, BTagTrackProbability3DRcd >.index(), edm::ESGetToken< MagneticField, IdealMagneticFieldRecord >.index(), edm::ESGetToken< CTPPSBeamParameters, CTPPSBeamParametersRcd >.index(), edm::ESGetToken< RecoIdealGeometry, DTRecoGeometryRcd >.index(), edm::ESGetToken< TotemAnalysisMask, TotemReadoutRcd >.index(), edm::ESGetToken< AlignmentErrorsExtended, GEMAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< RPCClusterSize, RPCClusterSizeRcd >.index(), edm::ESGetToken< RPCStripNoises, RPCStripNoisesRcd >.index(), edm::ESGetToken< HGCalDDDConstants, IdealGeometryRecord >.index(), edm::ESGetToken< EcalTPGLutIdMap, EcalTPGLutIdMapRcd >.index(), edm::ESGetToken< ESProduct, ESRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalMappingElectronicsRcd >.index(), edm::ESGetToken< LHCOpticalFunctionsSetCollection, CTPPSOpticsRcd >.index(), edm::ESGetToken< CastorSaturationCorrs, CastorSaturationCorrsRcd >.index(), edm::ESGetToken< BeamSpotOnlineObjects, BeamSpotOnlineHLTObjectsRcd >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalIntercalibConstantsRcd >.index(), edm::ESGetToken< CaloSubdetectorGeometry, EcalEndcapGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalPulseCovariancesRcd >.index(), edm::ESGetToken< TrackProbabilityCalibration, BTagTrackProbability2DRcd >.index(), edm::ESGetToken< L1TriggerKeyExt, L1TriggerKeyExtRcd >.index(), edm::ESGetToken< EcalLaserAPDPNRatios, EcalLaserAPDPNRatiosRcd >.index(), edm::ESGetToken< ESCondObjectContainer, ESIntercalibConstantsRcd >.index(), edm::ESGetToken< CaloConfig, L1TCaloConfigRcd >.index(), edm::ESGetToken< Alignments, CSCAlignmentRcd >.index(), edm::ESGetToken< SiStripThreshold, SiStripThresholdRcd >.index(), edm::ESGetToken< cms::DDDetector, IdealGeometryRecord >.index(), edm::ESGetToken< HcalParameters, HcalParametersRcd >.index(), edm::ESGetToken< DTTPGParameters, DTTPGParametersRcd >.index(), edm::ESGetToken< CastorGains, CastorGainsRcd >.index(), edm::ESGetToken< CastorPedestalWidths, CastorPedestalWidthsRcd >.index(), edm::ESGetToken< HcalDDDSimConstants, HcalSimNumberingRecord >.index(), edm::ESGetToken< L1RPCConfig, L1RPCConfigRcd >.index(), edm::ESGetToken< CaloSimulationParameters, HcalParametersRcd >.index(), edm::ESGetToken< GEMeMap, GEMeMapRcd >.index(), edm::ESGetToken< L1TMuonOverlapParams, L1TMuonOverlapParamsRcd >.index(), edm::ESGetToken< SiPixel2DTemplateDBObject, SiPixel2DTemplateDBObjectRcd >.index(), edm::ESGetToken< CastorPedestals, CastorPedestalsRcd >.index(), edm::ESGetToken< JetCorrectorParametersCollection, JetCorrectionsRecord >.index(), edm::ESGetToken< AlignmentSurfaceDeformations, TrackerSurfaceDeformationRcd >.index(), edm::ESGetToken< HcalFrontEndMap, HcalFrontEndMapRcd >.index(), edm::ESGetToken< RunInfo, RunInfoRcd >.index(), edm::ESGetToken< cms::DDCompactView, IdealGeometryRecord >.index(), edm::ESGetToken< SiStripBackPlaneCorrection, SiStripBackPlaneCorrectionDepRcd >.index(), edm::ESGetToken< PMTDParameters, PMTDParametersRcd >.index(), edm::ESGetToken< CSCChannelMapperBase, CSCChannelMapperRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalTPGPedestalsRcd >.index(), edm::ESGetToken< MeasurementTracker, CkfComponentsRecord >.index(), edm::ESGetToken< EcalTimeBiasCorrections, EcalTimeBiasCorrectionsRcd >.index(), edm::ESGetToken< TrackerDetToDTCELinkCablingMap, TrackerDetToDTCELinkCablingMapRcd >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalGainRatiosRcd >.index(), edm::ESGetToken< L1CaloEtScale, L1EmEtScaleRcd >.index(), edm::ESGetToken< BeamSpotObjects, BeamSpotTransientObjectsRcd >.index(), edm::ESGetToken< L1RCTParameters, L1RCTParametersRcd >.index(), edm::ESGetToken< MuonDetLayerGeometry, MuonRecoGeometryRecord >.index(), edm::ESGetToken< cms::DDSpecParRegistry, DDSpecParRegistryRcd >.index(), edm::ESGetToken< GeometricSearchTracker, TrackerRecoGeometryRecord >.index(), edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord >.index(), edm::ESGetToken< CaloSubdetectorGeometry, HcalGeometryRecord >.index(), edm::ESGetToken< SiStripDetCabling, SiStripDetCablingRcd >.index(), edm::ESGetToken< EcalTPGPhysicsConst, EcalTPGPhysicsConstRcd >.index(), edm::ESGetToken< Alignments, MTDAlignmentRcd >.index(), edm::ESGetToken< HcalTB06BeamParameters, IdealGeometryRecord >.index(), edm::ESGetToken< SiStripApvSimulationParameters, SiStripApvSimulationParametersRcd >.index(), edm::ESGetToken< CSCIndexerBase, CSCIndexerRecord >.index(), edm::ESGetToken< HcalSimulationParameters, HcalParametersRcd >.index(), edm::ESGetToken< CastorQIEData, CastorQIEDataRcd >.index(), edm::ESGetToken< CSCChamberTimeCorrections, CSCChamberTimeCorrectionsRcd >.index(), edm::ESGetToken< HcalChannelPropertiesVec, HcalChannelPropertiesRecord >.index(), edm::ESGetToken< trackerDTC::Setup, trackerDTC::SetupRcd >.index(), edm::ESGetToken< Propagator, TrackingComponentsRecord >.index(), edm::ESGetToken< TrajectoryStateUpdator, TrackingComponentsRecord >.index(), edm::ESGetToken< Alignments, ESAlignmentRcd >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalWeightXtalGroupsRcd >.index(), edm::ESGetToken< ME0Geometry, MuonGeometryRecord >.index(), edm::ESGetToken< CTPPSGeometry, VeryForwardMisalignedGeometryRecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalNextToDeadChannelRcd >.index(), edm::ESGetToken< MTDGeometry, MTDDigiGeometryRecord >.index(), edm::ESGetToken< Alignments, TrackerAlignmentRcd >.index(), edm::ESGetToken< EcalTrigTowerConstituentsMap, IdealGeometryRecord >.index(), edm::ESGetToken< CastorChannelQuality, CastorChannelQualityRcd >.index(), edm::ESGetToken< LHCInfo, LHCInfoRcd >.index(), edm::ESGetToken< TransientTrackBuilder, TransientTrackRecord >.index(), edm::ESGetToken< L1TMuonGlobalParams, L1TMuonGlobalParamsO2ORcd >.index(), edm::ESGetToken< Alignments, typename T::AlignmentRecord >.index(), edm::ESGetToken< OOTPileupCorrectionBuffer, MyRecord >.index(), edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskAlgoTrigRcd >.index(), edm::ESGetToken< EcalTimeDependentCorrections, EcalLinearCorrectionsRcd >.index(), edm::ESGetToken< RPCAMCLinkMap, RPCCPPFLinkMapRcd >.index(), edm::ESGetToken< DDDetector, IdealGeometryRecord >.index(), edm::ESGetToken< DTCCBConfig, DTCCBConfigRcd >.index(), edm::ESGetToken< ESTimeSampleWeights, ESTimeSampleWeightsRcd >.index(), edm::ESGetToken< DTT0, DTT0Rcd >.index(), edm::ESGetToken< DetGeomDesc, VeryForwardMisalignedGeometryRecord >.index(), edm::ESGetToken< AlignmentErrorsExtended, DTAlignmentErrorExtendedRcd >.index(), edm::ESGetToken< CTPPSRPAlignmentCorrectionsData, RPMisalignedAlignmentRecord >.index(), edm::ESGetToken< GEMMaskedStrips, GEMMaskedStripsRcd >.index(), edm::ESGetToken< Alignments, HOAlignmentRcd >.index(), edm::ESGetToken< Alignments, HBAlignmentRcd >.index(), edm::ESGetToken< L1RPCConeDefinition, L1RPCConeDefinitionRcd >.index(), edm::ESGetToken< HcalTPGCoder, HcalTPGRecord >.index(), edm::ESGetToken< Alignments, GEMAlignmentRcd >.index(), edm::ESGetToken< HcalRespCorrs, HcalRespCorrsRcd >.index(), edm::ESGetToken< SiStripApvGain, Record >.index(), edm::ESGetToken< BeamSpotObjects, BeamSpotObjectsRcd >.index(), edm::ESGetToken< SiStripFedCabling, SiStripFedCablingRcd >.index(), edm::ESGetToken< SiStripSummary, SiStripSummaryRcd >.index(), edm::ESGetToken< SiPixelFEDChannelContainer, SiPixelStatusScenariosRcd >.index(), edm::ESGetToken< EcalADCToGeVConstant, EcalADCToGeVConstantRcd >.index(), edm::ESGetToken< L1RPCBxOrConfig, L1RPCBxOrConfigRcd >.index(), edm::ESGetToken< SiStripDetVOff, SiPixelDetVOffRcd >.index(), edm::ESGetToken< CSCDBGasGainCorrection, CSCDBGasGainCorrectionRcd >.index(), edm::ESGetToken< DetLayerGeometry, RecoGeometryRecord >.index(), edm::ESGetToken< StripClusterParameterEstimator, TkStripCPERecord >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalPulseShapesRcd >.index(), edm::ESGetToken< l1t::CaloParams, L1TCaloParamsRcd >.index(), edm::ESGetToken< L1GtTriggerMenu, L1GtTriggerMenuRcd >.index(), edm::ESGetToken< GeometricDet, IdealGeometryRecord >.index(), edm::ESGetToken< EcalTPGTowerStatus, EcalTPGTowerStatusRcd >.index(), edm::ESGetToken< SiStripApvGain, SiStripApvGainRcd >.index(), edm::ESGetToken< CSCGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< TObject, TRecord >.index(), edm::ESGetToken< DTGeometry, MuonGeometryRecord >.index(), edm::ESGetToken< Alignments, GlobalPositionRcd >.index(), edm::ESGetToken< EcalCondObjectContainer, EcalLiteDTUPedestalsRcd >.index(), edm::ESGetToken< ESCondObjectContainer, ESAngleCorrectionFactorsRcd >.index(), edm::ESGetToken< SiStripClusterizerConditions, SiStripClusterizerConditionsRcd >.index(), edm::ESGetToken< SiStripBadStrip, SiStripBadStripRcd >.index(), edm::ESGetToken< RPCInverseLBLinkMap, RPCInverseLBLinkMapRcd >.index(), edm::ESGetToken< HGCalTopology, IdealGeometryRecord >.index(), edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleRcd >.index(), edm::ESGetToken< HBHENegativeEFilter, HBHENegativeEFilterRcd >.index(), edm::ESGetToken< GsfMaterialEffectsUpdator, TrackingComponentsRecord >.index(), edm::ESGetToken< DDCompactView, IdealGeometryRecord >.index(), edm::ESGetToken< HBHEDarkening, HBHEDarkeningRecord >.index(), edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleDepRcd >.index(), edm::ESGetToken< CSCDBNoiseMatrix, CSCDBNoiseMatrixRcd >.index(), edm::ESGetToken< EcalTPGSpike, EcalTPGSpikeRcd >.index(), edm::ESGetToken< JME::JetResolutionObject, JetResolutionRcd >.index(), edm::ESGetToken< CaloTPGTranscoder, CaloTPGRecord >.index(), edm::ESGetToken< GBRForestD, GBRDWrapperRcd >.index(), edm::ESGetToken< SiStripFecCabling, SiStripFecCablingRcd >.index(), edm::ESGetToken< HGCalTriggerGeometryBase, CaloGeometryRecord >.index(), edm::ESGetToken< SiStripLatency, SiStripLatencyRcd >.index(), edm::ESGetToken< CTPPSRPAlignmentCorrectionsData, RPRealAlignmentRecord >.index(), edm::ESGetToken< MuonSystemAging, MuonSystemAgingRcd >.index(), edm::ESGetToken< CSCDBL1TPParameters, CSCDBL1TPParametersRcd >.index(), edm::ESGetToken< SiPixelLorentzAngle, SiPixelLorentzAngleRcd >.index(), edm::ESGetToken< SiStripDetVOff, SiStripDetVOffRcd >.index(), edm::ESGetToken< GeometricTimingDet, IdealGeometryRecord >.index(), edm::ESGetToken< SiStripNoises, SiStripNoisesRcd >.index(), edm::ESGetToken< L1CaloEtScale, L1HtMissScaleRcd >.index(), edm::ESGetToken< Chi2MeasurementEstimatorBase, TrackingComponentsRecord >.index(), edm::ESGetToken< SiStripQuality, SiStripQualityRcd >.index(), edm::ESGetToken< L1GtBoardMaps, L1GtBoardMapsRcd >.index(), edm::ESGetToken< L1CaloEtScale, L1HfRingEtScaleRcd >.index(), edm::ESGetToken< CSCCrateMap, CSCCrateMapRcd >.index(), OmniClusterRef.index(), edm::EDPutTokenT< FEDRawDataCollection >.index(), edm::EDPutTokenT< MkFitOutputWrapper >.index(), edm::EDPutTokenT< edm::OwnVector >.index(), edm::EDPutTokenT< edm::SortedCollection< HFRecHit, edm::StrictWeakOrdering< HFRecHit > > >.index(), edm::EDPutTokenT< edm::HLTPathStatus >.index(), edm::EDPutTokenT< GenLumiInfoProduct >.index(), edm::EDPutTokenT< EtSumBxCollection >.index(), edm::EDPutTokenT< bool >.index(), edm::EDPutTokenT< reco::SuperClusterCollection >.index(), edm::EDPutTokenT< reco::PFJetCollection >.index(), edm::EDPutTokenT< edm::SortedCollection >.index(), edm::EDPutTokenT< edm::ConditionsInEventBlock >.index(), edm::EDPutTokenT< MkFitInputWrapper >.index(), edm::EDPutTokenT< BeamSpotOnlineCollection >.index(), edm::EDPutTokenT< trigger::TriggerEventWithRefs >.index(), edm::EDPutTokenT< MyParticleCollection >.index(), edm::EDPutTokenT< LumiInfo >.index(), edm::EDPutTokenT< L1AcceptBunchCrossingCollection >.index(), edm::EDPutTokenT< cms::cuda::Product< BeamSpotCUDA > >.index(), edm::EDPutTokenT< int >.index(), edm::EDPutTokenT< double >.index(), edm::EDPutTokenT< std::vector< edm::EventAuxiliary > >.index(), edm::EDPutTokenT< reco::PFBlockCollection >.index(), edm::EDPutTokenT< Level1TriggerScalersCollection >.index(), edm::EDPutTokenT< GenRunInfoProduct >.index(), edm::EDPutTokenT< reco::ConversionCollection >.index(), edm::EDPutTokenT< reco::GsfElectronCollection >.index(), edm::EDPutTokenT< DcsStatusCollection >.index(), edm::EDPutTokenT< std::vector< std::vector< int > > >.index(), edm::EDPutTokenT< L1MuDTChambThContainer >.index(), edm::EDPutTokenT< edm::ThinnedAssociation >.index(), edm::EDPutTokenT< std::vector< RPCDigiL1Link > >.index(), edm::EDPutTokenT< TTDTC >.index(), edm::EDPutTokenT< edm::ValueMap< LorentzVector > >.index(), edm::EDPutTokenT< edmNew::DetSetVector< SiStripCluster > >.index(), edm::EDPutTokenT< edm::AssociationMap >.index(), edm::EDPutTokenT< LumiScalersCollection >.index(), edm::EDPutTokenT< std::vector< int > >.index(), edm::EDPutTokenT< DQMToken >.index(), edm::EDPutTokenT< edm::ValueMap< edm::Ref > >.index(), edm::EDPutTokenT< edm::ValueMap< edm::Ptr > >.index(), edm::EDPutTokenT< edm::ValueMap< float > >.index(), edm::EDPutTokenT< edmNew::DetSetVector >.index(), edm::EDPutTokenT< std::vector< unsigned int > >.index(), edm::EDPutTokenT< std::vector< L1MuRegionalCand > >.index(), edm::EDPutTokenT< std::vector< float > >.index(), edm::EDPutTokenT< float >.index(), edm::EDPutTokenT< edmNew::DetSetVector< SiPixelCluster > >.index(), edm::EDPutTokenT< reco::ElectronCollection >.index(), edm::EDPutTokenT< reco::CaloClusterCollection >.index(), edm::EDPutTokenT< JetBxCollection >.index(), edm::EDPutTokenT< std::vector< SeedStopInfo > >.index(), edm::EDPutTokenT< TrackCandidateCollection >.index(), edm::EDPutTokenT< CaloTowerBxCollection >.index(), edm::EDPutTokenT< L1GtTechnicalTriggerRecord >.index(), edm::EDPutTokenT< unsigned int >.index(), edm::EDPutTokenT< TrajectorySeedCollection >.index(), edm::EDPutTokenT< GenLumiInfoHeader >.index(), edm::EDPutTokenT< std::vector< bool > >.index(), edm::EDPutTokenT< edm::SortedCollection< HBHERecHit, edm::StrictWeakOrdering< HBHERecHit > > >.index(), edm::EDPutTokenT< std::vector< double > >.index(), edm::EDPutTokenT< reco::GsfElectronCoreCollection >.index(), edm::EDPutTokenT< BXVector >.index(), edm::EDPutTokenT< L1CaloRegionCollection >.index(), edm::EDPutTokenT< CaloClusterBxCollection >.index(), edm::EDPutTokenT< Collection >.index(), edm::EDPutTokenT< reco::PFCandidateCollection >.index(), edm::EDPutTokenT< reco::TrackExtraCollection >.index(), edm::EDPutTokenT< GenEventInfoProduct >.index(), edm::EDPutTokenT< L1TriggerScalersCollection >.index(), edm::EDPutTokenT< edm::Association< reco::TrackExtraCollection > >.index(), edm::EDPutTokenT< reco::TrackCollection >.index(), edm::EDPutTokenT< TauBxCollection >.index(), edm::EDPutTokenT< reco::BeamSpot >.index(), edm::EDPutTokenT< edm::TriggerResults >.index(), edm::EDPutTokenT< pat::PackedCandidateCollection >.index(), edm::EDPutTokenT< edm::ConditionsInLumiBlock >.index(), edm::EDPutTokenT< reco::PFCandidateEGammaExtraCollection >.index(), edm::EDPutTokenT< edm::SortedCollection< HORecHit, edm::StrictWeakOrdering< HORecHit > > >.index(), edm::EDPutTokenT< reco::PhotonCollection >.index(), edm::EDPutTokenT< L1MuDTChambPhContainer >.index(), edm::EDPutTokenT< edm::ConditionsInRunBlock >.index(), edm::EDPutTokenT< edm::HepMCProduct >.index(), edm::EDPutTokenT< std::vector< Bool_t > >.index(), edm::EDPutTokenT< std::vector< reco::GenParticle > >.index(), edm::EDPutTokenT< std::map< edm::Hash, edm::ParameterSetBlob > >.index(), edm::EDPutTokenT< reco::PFMETCollection >.index(), edm::EDPutTokenT< reco::VertexCollection >.index(), edm::EDPutTokenT< AlignmentToken >.index(), edm::EDPutTokenT< edm::EndPathStatus >.index(), edm::EDPutTokenT< cms::cuda::Product< cms::cudatest::Thing > >.index(), edm::EDPutTokenT< std::vector< edm::ErrorSummaryEntry > >.index(), edm::EDPutTokenT< EGammaBxCollection >.index(), edm::EDPutTokenT< reco::ElectronSeedCollection >.index(), EDPutTokenT< HBHERecHitCollection >.index(), EDPutTokenT< HORecHitCollection >.index(), EDPutTokenT< HFRecHitCollection >.index(), vector< Bool_t >.index(), ValueMap< LorentzVector >.index(), ValueMap< reco::CandidatePtr >.index(), EDPutTokenT< PROD >.index(), edm::EDPutTokenT< T >.index(), geometryXMLparser.CSCAlignable.index(), edm::RefCoreWithIndex.index(), edm::test::ProcessToken.index(), TkPhase2OTMeasurementDet.index(), fastsim::NuclearInteraction.index(), reco::TemplatedSecondaryVertexTagInfo< IPTI, VTX >::IndexedVertexTrackSelector.index, GeomDet.index(), PhysicsTools::TreeReader::Value.index, pat::eventhypothesis::Looper< T >.index(), Looper< T >.index(), TkPixelMeasurementDet.index(), ntupleDataFormat._Object.index(), reco::PFBlockElement.index(), fastsim::SimplifiedGeometry.index(), cond::SmallWORMDict.index(), edm::TriggerResultsByName.index(), NuclearInteractionFTFSimulator.index, HOTPDigiTwinMux.index(), TkStripMeasurementDet.index(), PhysicsTools::MVAComputer::InputVar.index, edm::EDGetTokenT< std::map< uint, std::vector< SiStripCluster > > >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHERecHit, edm::StrictWeakOrdering< HBHERecHit > > >.index(), edm::EDGetTokenT< PGlobalSimHit >.index(), edm::EDGetTokenT< L1GlobalTriggerRecord >.index(), edm::EDGetTokenT< MkFitOutputWrapper >.index(), edm::EDGetTokenT< l1t::PFTrackCollection >.index(), edm::EDGetTokenT< DigiCollection >.index(), edm::EDGetTokenT< std::vector< reco::VertexCompositeCandidate > >.index(), edm::EDGetTokenT< SeedingLayerSetsHits >.index(), edm::EDGetTokenT< reco::GlobalHaloData >.index(), edm::EDGetTokenT< std::vector< reco::FFTAnyJet< reco::GenJet > > >.index(), DetSetVector< CTPPSPixelLocalTrack >.index(), StrictWeakOrdering< HORecHit >.index(), edm::EDGetTokenT< DTRecSegment4DCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripCluster > >.index(), EDGetTokenT< av_t >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTCluster< T > > >.index(), edm::EDGetTokenT< CSCCLCTDigiCollection >.index(), edm::EDGetTokenT< HepMCProduct >.index(), edm::EDGetTokenT< reco::JetFlavourInfoMatchingCollection >.index(), edm::EDGetTokenT< HcalUMNioDigi >.index(), edm::EDGetTokenT< std::vector< TrackClass > >.index(), edm::EDGetTokenT< std::vector< reco::PFJet > >.index(), edm::EDGetTokenT< L1AcceptBunchCrossingCollection >.index(), edm::EDGetTokenT< pat::JetCollection >.index(), edm::EDGetTokenT< std::vector< unsigned char > >.index(), edm::EDGetTokenT< TrajectorySeedCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< Digi > >.index(), edm::EDGetTokenT< edm::View< T2 > >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelRawDataError > >.index(), edm::EDGetTokenT< std::vector< TrackingParticle > >.index(), edm::EDGetTokenT< MuonDigiCollection >.index(), EDGetTokenT< HODigiCollection >.index(), edm::EDGetTokenT< edm::View< pat::Tau > >.index(), edm::EDGetTokenT< LumiInfo >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelCalibDigi > >.index(), edm::EDGetTokenT< edm::View< pat::PackedCandidate > >.index(), edm::EDGetTokenT< GEMCoPadDigiCollection >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< int >::type >.index(), edm::EDGetTokenT< L1GctEtTotal >.index(), edm::EDGetTokenT< CTPPSRecord >.index(), edm::EDGetTokenT< std::vector< reco::ForwardProton > >.index(), EDGetTokenT< l1t::TauBxCollection >.index(), edm::EDGetTokenT< CSCDDUStatusDigiCollection >.index(), ValueMap< Bool_t >.index(), edm::EDGetTokenT< BXVector< l1t::Jet > >.index(), edm::EDGetTokenT< reco::PhotonCoreCollection >.index(), edm::EDGetTokenT< reco::RecoEcalCandidateCollection >.index(), edm::EDGetTokenT< edm::View< reco::Vertex > >.index(), edm::EDGetTokenT< TriggerConditionCollection >.index(), edm::EDGetTokenT< APVCyclePhaseCollection >.index(), edm::EDGetTokenT< reco::PFTauCollection >.index(), edm::EDGetTokenT< std::vector< SimTrack > >.index(), edm::EDGetTokenT< reco::PixelMatchGsfElectronCollection >.index(), edm::EDGetTokenT< reco::JetCorrector >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonCosmicCompatibility > >.index(), EDGetTokenT< BXVector< GlobalAlgBlk >.index(), edm::EDGetTokenT< L1GctHFRingEtSumsCollection >.index(), edm::EDGetTokenT< OColl >.index(), edm::EDGetTokenT< pat::CompositeCandidateCollection >.index(), edm::EDGetTokenT< trigger::TriggerEvent >.index(), edm::EDGetTokenT< CrossingFrame< SimVertex > >.index(), View< reco::Muon >.index(), edm::EDGetTokenT< reco::BasicClusterCollection >.index(), EDGetTokenT< EcalRecHitCollection >.index(), edm::EDGetTokenT< CSCComparatorDigiCollection >.index(), edm::EDGetTokenT< edm::View< pat::IsolatedTrack > >.index(), edm::EDGetTokenT< METCollection >.index(), edm::EDGetTokenT< MuonBxCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondRecHit > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemVFATStatus > >.index(), edm::EDGetTokenT< reco::EvtPlaneCollection >.index(), edm::EDGetTokenT< reco::JetPiZeroAssociation >.index(), edm::EDGetTokenT< std::vector< SeedStopInfo > >.index(), edm::EDGetTokenT< std::vector< pat::Muon > >.index(), edm::EDGetTokenT< L1GlobalTriggerObjectMaps >.index(), edm::EDGetTokenT< GenEventInfoProduct >.index(), edm::EDGetTokenT< std::vector< reco::TemplatedSoftLeptonTagInfo > >.index(), edm::EDGetTokenT< std::vector< reco::Track > >.index(), StrictWeakOrdering< HBHERecHit >.index(), EDGetTokenT< CaloTowerCollection >.index(), edm::EDGetTokenT< edm::ContainerMask< edmNew::DetSetVector< SiPixelCluster > > >.index(), edm::EDGetTokenT< PileupVertexContent >.index(), edm::EDGetTokenT< PFTauTagInfoCollection >.index(), vector< PileupSummaryInfo >.index(), edm::EDGetTokenT< std::vector< reco::CastorTower > >.index(), edm::EDGetTokenT< DTROS25Collection >.index(), edm::EDGetTokenT< edm::SortedCollection< HFRecHit > >.index(), edm::EDGetTokenT< reco::PFRecHitCollection >.index(), edm::EDGetTokenT< std::vector< JetType > >.index(), edm::EDGetTokenT< L2MuonTrajectorySeedCollection >.index(), edm::EDGetTokenT< reco::ElectronCollection >.index(), EDGetTokenT< Map_t >.index(), edm::EDGetTokenT< std::vector< reco::Vertex > >.index(), edm::EDGetTokenT< edm::View< reco::RecoCandidate > >.index(), edm::EDGetTokenT< TColl >.index(), edm::EDGetTokenT< MicroGMTConfiguration::CaloInputCollection >.index(), edm::EDGetTokenT< int >.index(), EDGetTokenT< EERecHitCollection >.index(), edm::EDGetTokenT< RPCRawDataCounts >.index(), edm::EDGetTokenT< reco::VertexToTrackingVertexAssociator >.index(), edm::EDGetTokenT< L1DataEmulRecord >.index(), edm::EDGetTokenT< EcalTBEventHeader >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemTimingDigi > >.index(), edm::EDGetTokenT< L1GctJetCandCollection >.index(), edm::EDGetTokenT< CTPPSFastRecHitContainer >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonMETCorrectionData > >.index(), edm::EDGetTokenT< std::vector< pat::Electron > >.index(), EDGetTokenT< TrajTrackAssociationCollection >.index(), edm::EDGetTokenT< CandidateCollection >.index(), edm::EDGetTokenT< reco::TrackToGenParticleAssociator >.index(), edm::EDGetTokenT< HcalDataFrameContainer >.index(), DetSetVector< CTPPSPixelRecHit >.index(), edm::EDGetTokenT< std::vector< pat::Particle > >.index(), DetSetVector< TotemRPUVPattern >.index(), edm::EDGetTokenT< PGlobalDigi >.index(), DetSetVector< CTPPSDiamondRecHit >.index(), edm::EDGetTokenT< std::vector< MaterialAccountingTrack > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondLocalTrack > >.index(), edm::EDGetTokenT< CSCCLCTPreTriggerCollection >.index(), edm::EDGetTokenT< std::vector< reco::SuperCluster > >.index(), edm::EDGetTokenT< std::vector< reco::GsfTrack > >.index(), edm::EDGetTokenT< CSCDCCFormatStatusDigiCollection >.index(), edm::EDGetTokenT< std::vector< pat::IsolatedTrack > >.index(), edm::EDGetTokenT< SimHitTPAssociationProducer::SimHitTPAssociationList >.index(), edm::EDGetTokenT< HcalDataFrameContainer< QIE11DataFrame > >.index(), edm::EDGetTokenT< EcalTBTDCRecInfo >.index(), edm::EDGetTokenT< vector< int > >.index(), edm::EDGetTokenT< GenParticleMatch >.index(), edm::EDGetTokenT< std::set< EcalTrigTowerDetId > >.index(), edm::EDGetTokenT< std::vector< reco::CaloMuon > >.index(), EDGetTokenT< HBHERecHitCollection >.index(), EDGetTokenT< HFRecHitCollection >.index(), edm::EDGetTokenT< edm::View< pat::Jet > >.index(), edm::EDGetTokenT< reco::RecoChargedCandidateCollection >.index(), edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs >.index(), edm::EDGetTokenT< SortedCollection< CaloTower > >.index(), edm::EDGetTokenT< pat::METCollection >.index(), edm::EDGetTokenT< edm::ValueMap >.index(), edm::EDGetTokenT< std::vector< pat::MET > >.index(), edm::EDGetTokenT< GlobalHaloData >.index(), edm::EDGetTokenT< RPCRecHitCollection >.index(), edm::EDGetTokenT< edm::View< pat::Muon > >.index(), edm::EDGetTokenT< edm::AssociationMap< edm::OneToOne< edm::View, edm::View > > >.index(), edm::EDGetTokenT< CSCSegmentCollection >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiPixelCluster > >.index(), edm::EDGetTokenT< std::vector< l1t::PFCandidate > >.index(), edm::EDGetTokenT< pat::ElectronCollection >.index(), DetSetVector< SiStripCluster >.index(), edm::EDGetTokenT< reco::PFBlockCollection >.index(), edm::EDGetTokenT< TProd >.index(), edm::EDGetTokenT< T1Collection >.index(), edm::EDGetTokenT< reco::BasicJetCollection >.index(), edm::EDGetTokenT< std::vector< reco::CaloCluster > >.index(), edm::EDGetTokenT< std::vector< float > >.index(), edm::EDGetTokenT< edm::View< reco::RecoChargedRefCandidate > >.index(), edm::EDGetTokenT< l1extra::L1EmParticleCollection >.index(), edm::EDGetTokenT< SVCollection >.index(), EDGetTokenT< SiStripRecHit2DCollection >.index(), vector< reco::Track >.index(), edm::EDGetTokenT< edm::SortedCollection >.index(), edm::EDGetTokenT< HitCollection >.index(), edm::EDGetTokenT< edm::TriggerResults >.index(), EDGetTokenT< SiStripMatchedRecHit2DCollection >.index(), vector< Trajectory >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::Muon > > >.index(), edm::EDGetTokenT< edm::View< reco::PFCluster > >.index(), edm::EDGetTokenT< BXVector< CaloEmCand > >.index(), edm::EDGetTokenT< PixelTrackFilter >.index(), edm::EDGetTokenT< ME0RecHitCollection >.index(), edm::EDGetTokenT< std::vector< std::string > >.index(), edm::EDGetTokenT< edm::AssociationVector< edm::RefProd, std::vector< Ref< PFTauTransverseImpactParameterCollection > > > >.index(), edm::EDGetTokenT< reco::JetMatchedPartonsCollection >.index(), edm::EDGetTokenT< MeasurementTrackerEvent >.index(), edm::EDGetTokenT< L1GctJetCounts >.index(), edm::EDGetTokenT< reco::CaloMETCollection >.index(), edm::EDGetTokenT< std::vector< pat::CompositeCandidate > >.index(), EDGetTokenT< TrackToVertexAssMap >.index(), edm::EDGetTokenT< edm::ValueMap< float > >.index(), edm::EDGetTokenT< edm::View< TICLCandidate > >.index(), edm::EDGetTokenT< PCrossingFrame< SimTrack > >.index(), edm::EDGetTokenT< std::vector< TTTrack > >.index(), ValueMap< float >.index(), edm::EDGetTokenT< GenRunInfoProduct >.index(), edm::EDGetTokenT< reco::DiscretizedEnergyFlow >.index(), edm::EDGetTokenT< edm::ValueMap< bool > >.index(), edm::EDGetTokenT< std::vector< edm::Ref > >.index(), edm::EDGetTokenT< pat::TriggerEvent >.index(), EDGetTokenT< VertexToPFCandAssMap >.index(), edm::EDGetTokenT< std::string >.index(), edm::EDGetTokenT< edm::DetSetVector< Phase2TrackerDigi > >.index(), edm::EDGetTokenT< JetCollection >.index(), View< I >.index(), edm::EDGetTokenT< edm::ValueMap< edm::Ref > >.index(), edm::EDGetTokenT< SiPixelDetectorStatus >.index(), edm::EDGetTokenT< GenParticleCollection >.index(), edm::EDGetTokenT< L1MuDTTrackContainer >.index(), edm::EDGetTokenT< Level1TriggerScalersCollection >.index(), vector< reco::Photon >.index(), edm::EDGetTokenT< reco::IsolatedPixelTrackCandidateCollection >.index(), edm::EDGetTokenT< BottomFwdPtrCollection >.index(), edm::EDGetTokenT< MVACollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::DeDxData > >.index(), edm::EDGetTokenT< edm::View< reco::GenParticle > >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< double >::type >.index(), edm::EDGetTokenT< DigiSimLinkCollection >.index(), edm::EDGetTokenT< FastTrackerRecHitRefCollection >.index(), edm::EDGetTokenT< PileupMixingContent >.index(), edm::EDGetTokenT< edm::SendJobHeader::ParameterSetMap >.index(), edm::EDGetTokenT< edm::ValueMap< edm::Ptr > >.index(), edm::EDGetTokenT< vector< reco::PFJet > >.index(), edm::EDGetTokenT< View< Track > >.index(), DetSetVector< SiPixelCluster >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiPixelRecHit > >.index(), edm::EDGetTokenT< reco::CaloJetCollection >.index(), edm::EDGetTokenT< edm::AssociationMap >.index(), EDGetTokenT< HFPreRecHitCollection >.index(), DetSetVector< PixelDigi >.index(), edm::EDGetTokenT< edm::PSimHitContainer >.index(), edm::EDGetTokenT< double >.index(), StrictWeakOrdering< HFRecHit >.index(), edm::EDGetTokenT< C2 >.index(), edm::EDGetTokenT< reco::PFDisplacedVertexCandidateCollection >.index(), edm::EDGetTokenT< reco::CSCHaloData >.index(), edm::EDGetTokenT< QualityMaskCollection >.index(), edm::EDGetTokenT< VertexCollection >.index(), edm::EDGetTokenT< TtSemiLeptonicEvent >.index(), edm::EDGetTokenT< pat::MuonCollection >.index(), edm::EDGetTokenT< LumiScalersCollection >.index(), edm::EDGetTokenT< reco::HcalHaloData >.index(), EDGetTokenT< HORecHitCollection >.index(), edm::EDGetTokenT< reco::WMuNuCandidateCollection >.index(), edm::EDGetTokenT< std::vector< unsigned int > >.index(), edm::EDGetTokenT< BeamSpot >.index(), View< reco::Jet >.index(), edm::EDGetTokenT< FastTrackerRecHitCombinationCollection >.index(), EDGetTokenT< AliClusterValueMap >.index(), edm::EDGetTokenT< ProbeCollType >.index(), edm::EDGetTokenT< edm::View< reco::CompositeCandidate > >.index(), edm::EDGetTokenT< pfMETCollection >.index(), edm::EDGetTokenT< bool >.index(), edm::EDGetTokenT< std::vector< reco::PFCandidate > >.index(), edm::EDGetTokenT< std::pair< double, double > >.index(), edm::EDGetTokenT< pat::GenericParticleCollection >.index(), edm::EDGetTokenT< HcalTBTriggerData >.index(), edm::EDGetTokenT< BXVector< l1t::EtSum > >.index(), edm::EDGetTokenT< LHERunInfoProduct >.index(), edm::EDGetTokenT< std::vector< edm::ErrorSummaryEntry > >.index(), edm::EDGetTokenT< SimTrackContainer >.index(), edm::EDGetTokenT< L1GctEtHad >.index(), edm::EDGetTokenT< std::vector< pat::Photon > >.index(), edm::EDGetTokenT< IntermediateHitDoublets >.index(), edm::EDGetTokenT< BXVector< T > >.index(), edm::EDGetTokenT< edm::View< reco::MET > >.index(), edm::EDGetTokenT< ME0DigiCollection >.index(), edm::EDGetTokenT< BXVector< l1t::EGamma > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< Phase2TrackerCluster1D > >.index(), edm::EDGetTokenT< PFCollection >.index(), edm::EDGetTokenT< edm::OwnVector< TrackingRegion > >.index(), edm::EDGetTokenT< L1CaloRegionCollection >.index(), edm::EDGetTokenT< vector< pat::Muon > >.index(), edm::EDGetTokenT< typename Selector::collection >.index(), edm::EDGetTokenT< std::map< int, edm::DetSetVector< CTPPSPixelRecHit > > >.index(), edm::EDGetTokenT< TICLGenericTile >.index(), edm::EDGetTokenT< TH3F >.index(), edm::EDGetTokenT< std::vector< reco::PreId > >.index(), edm::EDGetTokenT< std::vector< l1t::TkPrimaryVertex > >.index(), edm::EDGetTokenT< DTDDUCollection >.index(), edm::EDGetTokenT< TrackingParticleCollection >.index(), edm::EDGetTokenT< EcalListOfFEDS >.index(), edm::EDGetTokenT< reco::CompositeCandidateCollection >.index(), edm::EDGetTokenT< ClusterTPAssociation >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::GenParticle > > >.index(), edm::EDGetTokenT< TauBxCollection >.index(), edm::EDGetTokenT< pat::helper::AnyNumberAssociationAdaptor::AssoVec< float >::type >.index(), edm::EDGetTokenT< EMTFTrackCollection >.index(), edm::EDGetTokenT< FileBlobCollection >.index(), edm::EDGetTokenT< std::vector< CaloParticle > >.index(), edm::EDGetTokenT< HcalUnpackerReport >.index(), vector< double >.index(), edm::EDGetTokenT< edm::AssociationVector< PFTauRefProd, std::vector< edm::Ref > > >.index(), edm::EDGetTokenT< CandMatchMap >.index(), edm::EDGetTokenT< PuppiContainer >.index(), edm::EDGetTokenT< edm::View< reco::PFRecTrack > >.index(), edm::EDGetTokenT< l1extra::L1HFRingsCollection >.index(), EDGetTokenT< HBHEDigiCollection >.index(), edm::EDGetTokenT< FEDRawDataCollection >.index(), edm::EDGetTokenT< TTStubAssociationMap >.index(), edm::EDGetTokenT< CastorTowerCollection >.index(), edm::EDGetTokenT< reco::PFDisplacedVertexCollection >.index(), edm::EDGetTokenT< L1GtTechnicalTriggerRecord >.index(), edm::EDGetTokenT< L1CSCStatusDigiCollection >.index(), edm::EDGetTokenT< L1GctHFBitCountsCollection >.index(), edm::EDGetTokenT< std::vector< Trackster > >.index(), edm::EDGetTokenT< CrossingFrame< edm::HepMCProduct > >.index(), edm::EDGetTokenT< edm::ValueMap< Bool_t > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelCluster > >.index(), edm::EDGetTokenT< ParticleCollection >.index(), edm::EDGetTokenT< MEtoEDM >.index(), edm::EDGetTokenT< uint32_t >.index(), edm::EDGetTokenT< edm::ValueMap< std::pair< float, float > > >.index(), edm::EDGetTokenT< MuonCollection >.index(), edm::EDGetTokenT< edm::View< ParticleType > >.index(), edm::EDGetTokenT< reco::CaloMuonCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HODataFrame > >.index(), edm::EDGetTokenT< SendJobHeader::ParameterSetMap >.index(), edm::EDGetTokenT< reco::METCollection >.index(), edm::EDGetTokenT< TriggerAlgorithmCollection >.index(), edm::EDGetTokenT< L3MuonTrajectorySeedCollection >.index(), edm::EDGetTokenT< DTRecHitCollection >.index(), edm::EDGetTokenT< reco::GsfElectronCollection >.index(), edm::EDGetTokenT< TCDSRecord >.index(), edm::EDGetTokenT< edm::OwnVector >.index(), edm::EDGetTokenT< std::vector< std::vector< int > > >.index(), edm::EDGetTokenT< PFCandidateCollection >.index(), edm::EDGetTokenT< L1GctEtHadCollection >.index(), edm::EDGetTokenT< TIn >.index(), edm::EDGetTokenT< TriggerResults >.index(), edm::EDGetTokenT< std::vector< reco::PFBlock > >.index(), edm::EDGetTokenT< edm::View< reco::JPTJet > >.index(), edm::EDGetTokenT< std::vector< PileupSummaryInfo > >.index(), edm::EDGetTokenT< edm::View< PileupSummaryInfo > >.index(), edm::EDGetTokenT< edm::ValueMap< std::vector< edm::Ref > > >.index(), edm::EDGetTokenT< TriggerObjectStandAloneCollection >.index(), edm::EDGetTokenT< edm::LHCTransportLinkContainer >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPUVPattern > >.index(), edm::EDGetTokenT< edm::ValueMap< pat::VertexAssociation > >.index(), edm::EDGetTokenT< vector< pat::GenericParticle > >.index(), edm::EDGetTokenT< Obj >.index(), edm::EDGetTokenT< ValType >.index(), edm::EDGetTokenT< edm::Association< VertexCollection > >.index(), edm::EDGetTokenT< PHGCalValidInfo >.index(), edm::EDGetTokenT< typename SingleElementCollectionSelector< InputCollection, Selector, reco::CandidateCollection, StoreContainer, RefAdder > ::collection >.index(), edm::EDGetTokenT< reco::PUSubMETCandInfoCollection >.index(), edm::EDGetTokenT< L1GlobalTriggerReadoutRecord >.index(), edm::EDGetTokenT< L1GctEtMiss >.index(), edm::EDGetTokenT< reco::IsolatedTauTagInfoCollection >.index(), edm::EDGetTokenT< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > >.index(), edm::EDGetTokenT< LHEXMLStringProduct >.index(), edm::EDGetTokenT< TTClusterAssociationMap< edm::Ref > >.index(), edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > >.index(), edm::EDGetTokenT< ElectronCollection >.index(), edm::EDGetTokenT< edm::View< reco::GenJet > >.index(), edm::EDGetTokenT< PFTauDiscriminator >.index(), edm::EDGetTokenT< std::vector< reco::Muon > >.index(), edm::EDGetTokenT< edm::View< reco::BaseTau > >.index(), edm::EDGetTokenT< BXVector< l1t::Tau > >.index(), edm::EDGetTokenT< BXVector< GlobalExtBlk > >.index(), edm::EDGetTokenT< View< reco::PFCandidate > >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTStub< edm::Ref > > >.index(), edm::EDGetTokenT< edm::View< reco::Jet > >.index(), edm::EDGetTokenT< ErrorList >.index(), edm::EDGetTokenT< typename edm::View< T > >.index(), edm::EDGetTokenT< LHEEventProduct >.index(), edm::EDGetTokenT< std::map< int, edm::DetSetVector< TotemRPRecHit > > >.index(), edm::EDGetTokenT< edm::AssociationVector >.index(), edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > >.index(), edm::EDGetTokenT< L1GctEtTotalCollection >.index(), edm::EDGetTokenT< PixelFitter >.index(), edm::EDGetTokenT< TopFwdPtrCollection >.index(), edm::EDGetTokenT< CSCWireDigiCollection >.index(), edm::EDGetTokenT< MicroGMTConfiguration::InputCollection >.index(), edm::EDGetTokenT< reco::ForwardProtonCollection >.index(), edm::EDGetTokenT< std::set< EcalScDetId > >.index(), edm::EDGetTokenT< std::vector< reco::LeafCandidate > >.index(), edm::EDGetTokenT< vector< reco::CaloJet > >.index(), edm::EDGetTokenT< DetSetVector< SiStripRawDigi > >.index(), vector< reco::PFCandidateRef >.index(), edm::EDGetTokenT< std::vector< ticl::Trackster > >.index(), edm::EDGetTokenT< ESListOfFEDS >.index(), edm::EDGetTokenT< edm::SortedCollection< EcalRecHit, edm::StrictWeakOrdering< EcalRecHit > > >.index(), edm::EDGetTokenT< std::vector< l1extra::L1MuonParticle > >.index(), edm::EDGetTokenT< edm::ContainerMask >.index(), edm::EDGetTokenT< std::vector< RHS > >.index(), edm::EDGetTokenT< C1 >.index(), edm::EDGetTokenT< PATPrimitiveCollection >.index(), edm::EDGetTokenT< edm::View< Object > >.index(), edm::EDGetTokenT< reco::HcalIsolatedTrackCandidateCollection >.index(), edm::EDGetTokenT< TkFittedLasBeamCollection >.index(), edm::EDGetTokenT< BasicJetCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripProcessedRawDigi > >.index(), edm::EDGetTokenT< std::vector< reco::RecoChargedCandidate > >.index(), edm::EDGetTokenT< InputContainer >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonShower > >.index(), edm::EDGetTokenT< std::vector< pat::TriggerObjectStandAlone > >.index(), edm::EDGetTokenT< edm::ValueMap< TIn > >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelRecHit > >.index(), edm::EDGetTokenT< L1MuDTChambThContainer >.index(), edm::EDGetTokenT< edm::View< reco::SuperCluster > >.index(), edm::EDGetTokenT< edmNew::DetSetVector >.index(), edm::EDGetTokenT< edm::View< reco::BasicJet > >.index(), edm::EDGetTokenT< edm::View< reco::Photon > >.index(), edm::EDGetTokenT< reco::PFTauDiscriminator >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > >.index(), edm::EDGetTokenT< reco::ConversionCollection >.index(), ValueMap< bool >.index(), edm::EDGetTokenT< CrossingFrame< HepMCProduct > >.index(), edm::EDGetTokenT< L1CaloEmCollection >.index(), EDGetTokenT< T >.index(), edm::EDGetTokenT< edm::EDCollection >.index(), edm::EDGetTokenT< std::vector< L1MuKBMTCombinedStub > >.index(), edm::EDGetTokenT< reco::GenJetCollection >.index(), FwdPtr< T >.index(), edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > >.index(), edm::EDGetTokenT< DcsStatusCollection >.index(), edm::EDGetTokenT< T1 >.index(), edm::EDGetTokenT< LumiSummary >.index(), EDGetTokenT< VertexToTrackAssMap >.index(), edm::EDGetTokenT< l1tp2::CaloCrystalClusterCollection >.index(), edm::EDGetTokenT< L1GtTriggerMenuLite >.index(), EDGetTokenT< association_t >.index(), edm::EDGetTokenT< L1GctHtMissCollection >.index(), edm::EDGetTokenT< TriggerEventWithRefs >.index(), edm::EDGetTokenT< edm::View< reco::Electron > >.index(), edm::EDGetTokenT< std::vector< SimVertex > >.index(), edm::EDGetTokenT< LVColl >.index(), edm::EDGetTokenT< RPCDigiCollection >.index(), edm::EDGetTokenT< std::vector< unsigned short > >.index(), edm::EDGetTokenT< LeptonCollection >.index(), edm::EDGetTokenT< CSCTriggerContainer< csctf::TrackStub > >.index(), edm::EDGetTokenT< ME0DigiPreRecoCollection >.index(), edm::EDGetTokenT< L1MuRegionalCandCollection >.index(), edm::EDGetTokenT< std::vector< CTPPSLocalTrackLite > >.index(), edm::EDGetTokenT< pat::PackedCandidateCollection >.index(), edm::EDGetTokenT< SimHitTPAssociationList >.index(), edm::EDGetTokenT< TYPE >.index(), edm::EDGetTokenT< edm::View< reco::PFMET > >.index(), edm::EDGetTokenT< std::vector< SVTag > >.index(), edm::EDGetTokenT< Collection >.index(), edm::EDGetTokenT< reco::PFJetCollection >.index(), edm::EDGetTokenT< reco::PFCandidateCollection >.index(), edm::EDGetTokenT< ME0PadDigiCollection >.index(), edm::EDGetTokenT< edm::Association< reco::VertexCollection > >.index(), edm::EDGetTokenT< reco::BeamSpot >.index(), edm::EDGetTokenT< PFOutputCollection >.index(), edm::EDGetTokenT< std::vector< TrackingVertex > >.index(), edm::EDGetTokenT< Product >.index(), edm::EDGetTokenT< reco::PreshowerClusterCollection >.index(), edm::EDGetTokenT< CorrMETData >.index(), edm::EDGetTokenT< edm::ValueMap< double > >.index(), edm::EDGetTokenT< MkFitInputWrapper >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< pat::PackedCandidate > > >.index(), edm::EDGetTokenT< reco::TrackExtraCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelLocalTrack > >.index(), edm::EDGetTokenT< reco::Vertex >.index(), edm::EDGetTokenT< reco::MuonToTrackingParticleAssociator >.index(), edm::EDGetTokenT< std::vector< pat::PackedCandidate > >.index(), edm::EDGetTokenT< edm::DetSetVector< RPCDigiSimLink > >.index(), edm::EDGetTokenT< std::unordered_map< DetId, const HGCRecHit * > >.index(), edm::EDGetTokenT< HcalTBEventPosition >.index(), edm::EDGetTokenT< edm::View< reco::Candidate > >.index(), edm::EDGetTokenT< reco::SuperClusterCollection >.index(), edm::EDGetTokenT< reco::FFTJetPileupSummary >.index(), edm::EDGetTokenT< TsosVectorCollection >.index(), edm::EDGetTokenT< std::vector< Trajectory > >.index(), edm::EDGetTokenT< HcalTBTiming >.index(), edm::EDGetTokenT< std::vector< reco::PFMET > >.index(), edm::EDGetTokenT< edm::View< T > >.index(), edm::EDGetTokenT< DTLocalTriggerCollection >.index(), edm::EDGetTokenT< reco::PFDisplacedTrackerVertexCollection >.index(), edm::EDGetTokenT< edm::ValueMap< unsigned int > >.index(), edm::EDGetTokenT< std::vector< reco::CaloJet > >.index(), edm::EDGetTokenT< edm::DetSetVector< GEMDigiSimLink > >.index(), EDGetTokenT< reco::CandidateCollection >.index(), edm::EDGetTokenT< std::vector< math::PtEtaPhiMLorentzVector > >.index(), edm::EDGetTokenT< uint >.index(), edm::EDGetTokenT< std::vector< reco::ShallowTagInfo > >.index(), edm::EDGetTokenT< TrackingRegionsSeedingLayerSets >.index(), edm::EDGetTokenT< BXVector< CaloRegion > >.index(), edm::EDGetTokenT< EtSumBxCollection >.index(), edm::EDGetTokenT< edm::View< reco::CaloMET > >.index(), View< reco::Candidate >.index(), edm::EDGetTokenT< TrackCollection >.index(), edm::EDGetTokenT< L1GlobalTriggerObjectMapRecord >.index(), edm::EDGetTokenT< std::vector< T > >.index(), edm::EDGetTokenT< std::vector< reco::TemplatedSecondaryVertexTagInfo > >.index(), PhysicsTools::VarProcessor::LoopCtx.index(), DetSetVector< SiPixelCalibDigiError >.index(), vector< unsigned short >.index(), EDGetTokenT< am_t >.index(), edm::EDGetTokenT< edm::View< reco::TrackJet > >.index(), edm::EDGetTokenT< std::vector< PCaloHit > >.index(), edm::EDGetTokenT< reco::EcalHaloData >.index(), edm::EDGetTokenT< EventWithHistory >.index(), edm::EDGetTokenT< reco::GenMETCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< SiPixelCalibDigiError > >.index(), edm::EDGetTokenT< CSCDCCStatusDigiCollection >.index(), EDGetTokenT< PFCandToVertexAssMap >.index(), edm::EDGetTokenT< ESDigiCollection >.index(), edm::EDGetTokenT< reco::MuonTrackLinksCollection >.index(), edm::EDGetTokenT< std::vector< reco::Photon > >.index(), edm::EDGetTokenT< PEcalTBInfo >.index(), edm::EDGetTokenT< unsigned int >.index(), edm::EDGetTokenT< PackedOutputCollection >.index(), edm::EDGetTokenT< CrossingFrame< PCaloHit > >.index(), edm::EDGetTokenT< OnlineLuminosityRecord >.index(), edm::EDGetTokenT< EcalTBHodoscopeRecInfo >.index(), edm::EDGetTokenT< reco::SecondaryVertexTagInfoCollection >.index(), edm::EDGetTokenT< HcalTBBeamCounters >.index(), edm::EDGetTokenT< TkPrimaryVertexCollection >.index(), edm::EDGetTokenT< TrackCandidateCollection >.index(), edm::EDGetTokenT< edm::ValueMap< selection_type > >.index(), edm::EDGetTokenT< BXVector< GlobalAlgBlk > >.index(), edm::EDGetTokenT< CaloTowerBxCollection >.index(), edm::EDGetTokenT< std::vector< L1MuGMTCand > >.index(), edm::EDGetTokenT< reco::VertexCollection >.index(), edm::EDGetTokenT< TTTrackAssociationMap< edm::Ref > >.index(), edm::EDGetTokenT< edm::SimTrackContainer >.index(), edm::EDGetTokenT< TauCollection >.index(), vector< reco::PFCandidate >.index(), edm::EDGetTokenT< SimClusterCollection >.index(), View< T >.index(), edm::EDGetTokenT< ValueMap< float > >.index(), edm::EDGetTokenT< edm::View< reco::Muon > >.index(), edm::EDGetTokenT< edm::View< CaloParticle > >.index(), edm::EDGetTokenT< BXVector< l1t::Muon > >.index(), edm::EDGetTokenT< ClusterSummary >.index(), edm::EDGetTokenT< edm::HLTPathStatus >.index(), edm::EDGetTokenT< edm::View< reco::VertexCompositePtrCandidate > >.index(), edm::EDGetTokenT< susybsm::HSCParticleCollection >.index(), edm::EDGetTokenT< RecoMuons >.index(), edm::EDGetTokenT< edm::SortedCollection< HcalTriggerPrimitiveDigi > >.index(), edm::EDGetTokenT< View< Muon > >.index(), edm::EDGetTokenT< edm::View< object > >.index(), edm::EDGetTokenT< reco::PixelClusterCounts >.index(), vector< int >.index(), edm::EDGetTokenT< l1t::TkMuonCollection >.index(), edm::EDGetTokenT< reco::ConversionTrackCollection >.index(), edm::EDGetTokenT< reco::FlavorHistoryEvent >.index(), edm::EDGetTokenT< reco::TrackJetCollection >.index(), edm::EDGetTokenT< edm::Association< std::vector< reco::GenJet > > >.index(), edm::EDGetTokenT< T >.index(), edm::EDGetTokenT< GEMPadDigiClusterCollection >.index(), edm::EDGetTokenT< reco::Centrality >.index(), edm::EDGetTokenT< L1GlobalTriggerEvmReadoutRecord >.index(), View< Object >.index(), edm::EDGetTokenT< Point3DBase >.index(), edm::EDGetTokenT< edm::View< TrajectorySeed > >.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(), EDGetTokenT< QIE11DigiCollection >.index(), edm::EDGetTokenT< std::vector< reco::HGCalMultiCluster > >.index(), DetSetVector< SiStripProcessedRawDigi >.index(), edm::EDGetTokenT< SiStripEventSummary >.index(), edm::EDGetTokenT< View< Jet > >.index(), edm::EDGetTokenT< reco::PixelClusterCountsInEvent >.index(), edm::EDGetTokenT< edm::Association< reco::TrackCollection > >.index(), edm::EDGetTokenT< CSCRPCDigiCollection >.index(), edm::EDGetTokenT< HcalDataFrameContainer< QIE10DataFrame > >.index(), edm::EDGetTokenT< std::vector< L1MuRegionalCand > >.index(), edm::EDGetTokenT< edm::View >.index(), edm::EDGetTokenT< std::vector< uint32_t > >.index(), edm::EDGetTokenT< typename SingleElementCollectionRefSelector< InputType, Selector, OutputCollection, StoreContainer, RefAdder > ::collection >.index(), EDGetTokenT< reco::IsoDepositMap >.index(), edm::EDGetTokenT< DTRecClusterCollection >.index(), edm::EDGetTokenT< CaloParticleCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonTimeExtra > >.index(), edm::EDGetTokenT< std::vector< reco::CaloMET > >.index(), edm::EDGetTokenT< CSCRecHit2DCollection >.index(), edm::EDGetTokenT< TagInfoCollection >.index(), vector< unsigned int >.index(), edm::EDGetTokenT< LumiDetails >.index(), edm::EDGetTokenT< edm::SortedCollection< HBHEDataFrame > >.index(), EDGetTokenT< PFView >.index(), edm::EDGetTokenT< SimParticles >.index(), EDGetTokenT< IsoMap >.index(), edm::EDGetTokenT< PEcalValidInfo >.index(), edm::EDGetTokenT< edm::Association >.index(), vector< pat::PackedCandidate >.index(), vector< float >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPLocalTrack > >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonSimInfo > >.index(), edm::EDGetTokenT< HcalNoiseSummary >.index(), edm::EDGetTokenT< std::vector< PSimHit > >.index(), EDGetTokenT< HFDigiCollection >.index(), edm::EDGetTokenT< DTuROSFEDDataCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPDigi > >.index(), edm::EDGetTokenT< std::vector< double > >.index(), edm::EDGetTokenT< L1GctEtMissCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< PixelDigiSimLink > >.index(), edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator >.index(), edm::EDGetTokenT< L1CSCTrackCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondDigi > >.index(), edm::EDGetTokenT< edm::View< reco::BaseTagInfo > >.index(), edm::EDGetTokenT< reco::VertexCompositePtrCandidateCollection >.index(), edm::EDGetTokenT< TTStubAssociationMap< edm::Ref > >.index(), edm::EDGetTokenT< std::set< EBDetId > >.index(), edm::EDGetTokenT< edm::View< pat::MET > >.index(), edm::EDGetTokenT< reco::HcalNoiseRBXCollection >.index(), edm::EDGetTokenT< HTXS::HiggsClassification >.index(), edm::EDGetTokenT< std::vector< jetType > >.index(), edm::EDGetTokenT< TTStubAssociationMap< T > >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< reco::PFCandidate > > >.index(), edm::EDGetTokenT< EMTFHitCollection >.index(), edm::EDGetTokenT< reco::GsfTrackCollection >.index(), edm::EDGetTokenT< trigger::TriggerEventWithRefs >.index(), edm::EDGetTokenT< edm::View< reco::GenMET > >.index(), edm::EDGetTokenT< reco::PFV0Collection >.index(), edm::EDGetTokenT< std::vector< IPTI > >.index(), edm::EDGetTokenT< TTClusterAssociationMap >.index(), edm::EDGetTokenT< math::XYZPointF >.index(), EDGetTokenT< reco::JetTracksAssociation::Container >.index(), edm::EDGetTokenT< L1MuGMTCandCollection >.index(), edm::EDGetTokenT< edm::View< reco::CaloCluster > >.index(), edm::EDGetTokenT< std::vector< CandType > >.index(), edm::EDGetTokenT< edm::View< pat::Photon > >.index(), edm::EDGetTokenT< std::vector< reco::GsfElectron > >.index(), edm::EDGetTokenT< LTCDigiCollection >.index(), edm::EDGetTokenT< PMTDSimAccumulator >.index(), EDGetTokenT< QIE10DigiCollection >.index(), edm::EDGetTokenT< std::vector< TTTrack< edm::Ref > > >.index(), edm::EDGetTokenT< patMETCollection >.index(), edm::EDGetTokenT< TagCollType >.index(), edm::EDGetTokenT< SimHitAssoc >.index(), edm::EDGetTokenT< BeamSpotOnlineCollection >.index(), edm::EDGetTokenT< edm::ConditionsInEventBlock >.index(), edm::EDGetTokenT< std::vector< TotemFEDInfo > >.index(), edm::EDGetTokenT< reco::PFConversionCollection >.index(), edm::EDGetTokenT< l1extra::L1MuonParticleCollection >.index(), edm::EDGetTokenT< typename SingleElementCollectionSelector< InputCollection, Selector, OutputCollection, StoreContainer, RefAdder > ::collection >.index(), edm::EDGetTokenT< edm::View< reco::PFJet > >.index(), edm::EDGetTokenT< edm::DetSetVector< PixelDigi > >.index(), edm::EDGetTokenT< GEMPadDigiCollection >.index(), edm::EDGetTokenT< reco::ElectronSeedCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::MuonQuality > >.index(), edm::EDGetTokenT< edm::SortedCollection< HFDataFrame > >.index(), edm::EDGetTokenT< edm::View< reco::ConversionTrack > >.index(), edm::EDGetTokenT< std::vector< edm::RefVector< std::vector< jetType >, jetType, edm::refhelper::FindUsingAdvance< std::vector< jetType >, jetType > > > >.index(), edm::EDGetTokenT< CrossingFrame< T > >.index(), edm::EDGetTokenT< l1extra::L1JetParticleCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::VoronoiBackground > >.index(), edm::EDGetTokenT< L1GctEmCandCollection >.index(), edm::EDGetTokenT< EGammaBxCollection >.index(), edm::EDGetTokenT< EEDigiCollection >.index(), edm::EDGetTokenT< edm::View< TrackingParticle > >.index(), edm::EDGetTokenT< reco::PFCluster::EEtoPSAssociation >.index(), edm::EDGetTokenT< CPPFDigiCollection >.index(), edm::EDGetTokenT< hgcal::LayerClusterToCaloParticleAssociator >.index(), View< reco::Track >.index(), EDGetTokenT< EBRecHitCollection >.index(), edm::EDGetTokenT< std::vector< int > >.index(), edm::EDGetTokenT< std::vector< reco::FFTAnyJet< reco::Jet > > >.index(), edm::EDGetTokenT< edm::Association< reco::GenJetCollection > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPCluster > >.index(), edm::EDGetTokenT< std::vector< reco::GenJet > >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > >.index(), edm::EDGetTokenT< CandidateView >.index(), edm::EDGetTokenT< std::vector< SimCluster > >.index(), edm::EDGetTokenT< trigger::HLTPrescaleTable >.index(), edm::EDGetTokenT< std::vector< reco::CompositeCandidate > >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemRPRecHit > >.index(), edm::EDGetTokenT< TriggerEvent >.index(), edm::EDGetTokenT< TH2D >.index(), edm::EDGetTokenT< edm::View< reco::GsfElectron > >.index(), edm::EDGetTokenT< std::set< EEDetId > >.index(), EDGetTokenT< PixelFEDChannelCollection > tk.index(), edm::EDGetTokenT< std::vector< pat::GenericParticle > >.index(), edm::EDGetTokenT< edm::View< reco::Track > >.index(), edm::EDGetTokenT< GEMDigiCollection >.index(), edm::EDGetTokenT< TriggerObjectCollection >.index(), edm::EDGetTokenT< DTDigiCollection >.index(), edm::EDGetTokenT< l1extra::L1EtMissParticleCollection >.index(), vector< bool >.index(), edm::EDGetTokenT< TriggerPathCollection >.index(), edm::EDGetTokenT< EMTFDaqOutCollection >.index(), edm::EDGetTokenT< reco::PFClusterCollection >.index(), edm::EDGetTokenT< GEMSegmentCollection >.index(), edm::EDGetTokenT< PGlobalRecHit >.index(), edm::EDGetTokenT< RPCRawSynchro::ProdItem >.index(), edm::EDGetTokenT< EBDigiCollection >.index(), edm::EDGetTokenT< typename edm::View< C > >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< reco::GenParticle > > >.index(), EDGetTokenT< SiPixelRecHitCollection >.index(), edm::EDGetTokenT< reco::PattRecoTree >.index(), edm::EDGetTokenT< edmNew::DetSetVector< TTCluster< edm::Ref > > >.index(), edm::EDGetTokenT< reco::PFRecTrackCollection >.index(), edm::EDGetTokenT< TrackingVertexCollection >.index(), edm::EDGetTokenT< RegionalMuonCandBxCollection >.index(), edm::EDGetTokenT< Density >.index(), edm::EDGetTokenT< BXVector >.index(), edm::EDGetTokenT< edm::PCaloHitContainer >.index(), edm::EDGetTokenT< reco::PFJetChargedHadronAssociation >.index(), edm::EDGetTokenT< VarCollection >.index(), edm::EDGetTokenT< reco::ClusterRemovalInfo >.index(), edm::EDGetTokenT< HOCalibVariableCollection >.index(), edm::EDGetTokenT< TTClusterAssociationMap< T > >.index(), edm::EDGetTokenT< RecoElectrons >.index(), edm::EDGetTokenT< reco::PattRecoTree< fftjetcms::Real, reco::PattRecoPeak< fftjetcms::Real > > >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< T > > >.index(), edm::EDGetTokenT< std::vector< reco::PFCluster > >.index(), edm::EDGetTokenT< CTPPSLocalTrackLiteCollection >.index(), View< C >.index(), edm::EDGetTokenT< edm::SimVertexContainer >.index(), EDGetTokenT< PROD >.index(), edm::EDGetTokenT< MTDTrackingRecHit >.index(), edm::EDGetTokenT< std::vector< bool > >.index(), edm::EDGetTokenT< EnergyMap >.index(), vector< unsigned char >.index(), edm::EDGetTokenT< std::vector< LHS > >.index(), edm::EDGetTokenT< edm::View< candidate_type > >.index(), edm::EDGetTokenT< CrossingFrame< PSimHit > >.index(), edm::EDGetTokenT< CSCStripDigiCollection >.index(), edm::EDGetTokenT< SimHits >.index(), edm::EDGetTokenT< std::vector< math::XYZTLorentzVector > >.index(), edm::EDGetTokenT< L1MuGMTReadoutCollection >.index(), edm::EDGetTokenT< edm::View< reco::CaloJet > >.index(), edm::EDGetTokenT< edm::View< pat::Electron > >.index(), edm::EDGetTokenT< edm::HepMCProduct >.index(), edm::EDGetTokenT< std::vector< edm::RefVector< std::vector< T >, T, edm::refhelper::FindUsingAdvance< std::vector< T >, T > > > >.index(), edm::EDGetTokenT< std::vector< pat::Tau > >.index(), edm::EDGetTokenT< GenFilterInfo >.index(), vector< reco::Muon >.index(), edm::EDGetTokenT< edm::DetSetVector< StripDigiSimLink > >.index(), edm::EDGetTokenT< C >.index(), edm::EDGetTokenT< edm::ValueMap< int > >.index(), edm::EDGetTokenT< GenLumiInfoProduct >.index(), edm::EDGetTokenT< reco::PFMETCollection >.index(), edm::EDGetTokenT< edm::ValueMap< reco::JetID > >.index(), edm::EDGetTokenT< GEMRecHitCollection >.index(), edm::EDGetTokenT< reco::MuonCollection >.index(), DetSetVector< SiStripRawDigi >.index(), edm::EDGetTokenT< std::vector< pat::Jet > >.index(), edm::EDGetTokenT< std::vector< reco::VertexCompositePtrCandidate > >.index(), edm::EDGetTokenT< reco::CaloClusterCollection >.index(), edm::EDGetTokenT< JetBxCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HFRecHit, edm::StrictWeakOrdering< HFRecHit > > >.index(), edm::EDGetTokenT< edm::Association< reco::PFCandidateCollection > >.index(), edm::EDGetTokenT< ObjCollType >.index(), edm::EDGetTokenT< std::vector< edm::FwdPtr< pat::PackedGenParticle > > >.index(), ValueMap< reco::PFCandidateRef >.index(), edm::EDGetTokenT< l1t::EMTFTrackCollection >.index(), edm::EDGetTokenT< edm::ValueMap< StoredPileupJetIdentifier > >.index(), edm::EDGetTokenT< COLLECTION >.index(), edm::EDGetTokenT< float >.index(), DetSetVector< SiPixelCalibDigi >.index(), edm::EDGetTokenT< RegionsSeedingHitSets >.index(), edm::EDGetTokenT< CrossingFrame< SimTrack > >.index(), edm::EDGetTokenT< ConsumeType >.index(), edm::EDGetTokenT< cms::cuda::Product< cms::cudatest::Thing > >.index(), edm::EDGetTokenT< edm::Association< std::vector< pat::PackedGenParticle > > >.index(), edm::EDGetTokenT< reco::BeamHaloSummary >.index(), edm::EDGetTokenT< L1GctJetCountsCollection >.index(), edm::EDGetTokenT< edm::View< PATObjectType > >.index(), edm::EDGetTokenT< reco::JetFlavourMatchingCollection >.index(), edm::EDGetTokenT< edm::View< VTX > >.index(), edm::EDGetTokenT< l1t::EMTFDaqOutCollection >.index(), edm::EDGetTokenT< edm::AssociationVector< PFTauRefProd, std::vector< std::vector< edm::Ref > > > >.index(), edm::EDGetTokenT< PSimHitContainer >.index(), edm::EDGetTokenT< reco::GsfElectronCoreCollection >.index(), edm::EDGetTokenT< GenLumiInfoHeader >.index(), edm::EDGetTokenT< l1t::EMTFHitCollection >.index(), edm::EDGetTokenT< CSCALCTDigiCollection >.index(), edm::EDGetTokenT< pat::TauCollection >.index(), edm::EDGetTokenT< GlobalObjectMapRecord >.index(), edm::EDGetTokenT< DTRecSegment2DCollection >.index(), edm::EDGetTokenT< edm::PassiveHitContainer >.index(), edm::EDGetTokenT< edm::View< T1 > >.index(), edm::EDGetTokenT< TrajectoryCollection >.index(), EDGetTokenT< reco::CandidateView >.index(), edm::EDGetTokenT< std::vector< TICLSeedingRegion > >.index(), edm::EDGetTokenT< JetTracksAssociationCollection >.index(), edm::EDGetTokenT< TriggerFilterCollection >.index(), edm::EDGetTokenT< std::vector< reco::GenParticle > >.index(), edm::EDGetTokenT< DCSRecord >.index(), edm::EDGetTokenT< edm::View< reco::PFCandidate > >.index(), edm::EDGetTokenT< PHGCSimAccumulator >.index(), edm::EDGetTokenT< std::map< unsigned int, int > >.index(), edm::EDGetTokenT< std::vector< reco::TrackExtrapolation > >.index(), edm::EDGetTokenT< edm::View< PATObjType > >.index(), edm::EDGetTokenT< StGenEvent >.index(), edm::EDGetTokenT< edm::RefVector >.index(), edm::EDGetTokenT< InputCollection >.index(), edm::EDGetTokenT< L1MuDTChambPhContainer >.index(), edm::EDGetTokenT< SiPixelClusterShapeCache >.index(), edm::EDGetTokenT< edm::DetSetVector< TotemTimingRecHit > >.index(), edm::EDGetTokenT< edm::ConditionsInRunBlock >.index(), edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > >.index(), edm::EDGetTokenT< reco::PhotonCollection >.index(), edm::EDGetTokenT< TtGenEvent >.index(), edm::EDGetTokenT< edm::ConditionsInLumiBlock >.index(), edm::EDGetTokenT< reco::GsfPFRecTrackCollection >.index(), vector< reco::GsfElectron >.index(), edm::EDGetTokenT< reco::GenParticleCollection >.index(), edm::EDGetTokenT< reco::JPTJetCollection >.index(), edm::EDGetTokenT< reco::SoftLeptonTagInfoCollection >.index(), edm::EDGetTokenT< edm::SortedCollection< HORecHit, edm::StrictWeakOrdering< HORecHit > > >.index(), edm::EDGetTokenT< reco::TrackCollection >.index(), edm::EDGetTokenT< std::vector< reco::PFTau > >.index(), edm::EDGetTokenT< CSCCorrelatedLCTDigiCollection >.index(), EDGetTokenT< DetIdCollection >.index(), edm::EDGetTokenT< typename edm::View< I > >.index(), edm::EDGetTokenT< reco::VertexCompositeCandidateCollection >.index(), edm::EDGetTokenT< ME0SegmentCollection >.index(), edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelDigi > >.index(), MTDArrayBuffer.index(), EcalTimeMapDigitizer.index(), tmtt::Stub.index(), SiPixelTemplateDBObject.index(), python.cmstools.EventTree.index(), EcalHitResponse.index(), edm::ProductResolverIndexHelper.index(), pat::TriggerPath.index(), DCCTBDataParser.index(), AlpgenParameterName.index, VIterator< Item >.index, sistrip::RawToDigiUnpacker::Registry.index, edm::ESProductHost< Product, RecordTypes >.index(), Json::Value::CZString.index(), edm::ProductResolverIndexHelper::Matches.index(), FourVectorHLT::PathInfo.index(), DetIdAssociator.index(), HitDoublets.index(), UECalibration.index, cmsdt::metaPrimitive.index, fastsim::NuclearInteractionFTF.index, SequenceTypes._SequenceCollection.index(), edm::ProductResolverIndexHelper::IndexAndNames.index(), edm::Ref< L1GctHtMissCollection >.index(), Ref< C1, T1, F1 >.index(), edm::Ref< PFJetCollection >.index(), edm::Ref< TrackingParticleCollection >.index(), Ref< reco::PhotonCollection >.index(), edm::Ref< std::vector< pat::Tau > >.index(), Ref< l1t::RegionalMuonCandBxCollection >.index(), vector< pat::MET >.index(), edm::Ref< PFDisplacedVertexCollection >.index(), edm::Ref< GsfTrackExtraCollection >.index(), edm::Ref< TTStubDetSetVec, TTStub< Ref_Phase2TrackerDigi_ > >.index(), edm::Ref< std::vector< pat::MET > >.index(), edm::Ref< GsfElectronCoreCollection >.index(), edm::Ref< VertexCompositeCandidateCollection >.index(), edm::Ref< edm::SimTrackContainer >.index(), edm::Ref< TrackCollection >.index(), edm::Ref< DTRecSegment4DCollection >.index(), edm::Ref< PFClusterCollection >.index(), edm::Ref< std::vector< reco::TemplatedSecondaryVertexTagInfo > >.index(), edm::Ref< PFTauTagInfoCollection >.index(), DetSetVector< TTCluster< T > TTCluster< T >.index(), edm::Ref< TrackExtraCollection >.index(), Ref< C, T, F >.index(), edm::Ref< reco::GenJetCollection, typename refhelper::ValueTrait< reco::GenJetCollection >::value, typename refhelper::FindTrait< reco::GenJetCollection, typename refhelper::ValueTrait< reco::GenJetCollection >::value >::value >.index(), edm::Ref< L1GctHFRingEtSumsCollection >.index(), edm::Ref< std::vector< pat::Jet > >.index(), edm::Ref< PhotonCollection >.index(), edm::Ref< PFRecTrackCollection >.index(), edm::Ref< TauBxCollection >.index(), edm::Ref< pat::PackedCandidateCollection >.index(), edm::Ref< L1GctEtMissCollection >.index(), Ref< TCandColl >.index(), edm::Ref< PFBlockCollection >.index(), edm::Ref< IsolatedTauTagInfoCollection >.index(), edm::Ref< CSCSegmentCollection >.index(), edm::Ref< MuonCollection >.index(), edm::Ref< GsfTrackMomConstraintAssociationCollection >.index(), edm::Ref< L1GctJetCandCollection >.index(), edm::Ref< HSCPCaloInfoCollection >.index(), edm::Ref< PFCandidateCollection >.index(), vector< pat::Electron >.index(), edm::Ref< TkPrimaryVertexCollection >.index(), edm::Ref< L1GctEtTotalCollection >.index(), edm::Ref< edm::OwnVector >.index(), edm::Ref< L1GctEmCandCollection >.index(), vector< T >.index(), edm::Ref< PFTauTransverseImpactParameterCollection >.index(), edm::Ref< C, T, F >.index(), Ref< HBHERecHitCollection >.index(), vector< CandSecondaryVertexTagInfo >.index(), Ref< reco::TrackCollection >.index(), Ref< T >.index(), edm::Ref< GsfTrackCollection >.index(), edm::Ref< NuclearInteractionCollection >.index(), edm::Ref< VertexCollection >.index(), DetSetVector< SiPixelCluster > SiPixelCluster.index(), edm::Ref< std::vector< pat::Muon > >.index(), edm::Ref< TrackVtxConstraintAssociationCollection >.index(), edm::Ref< TrackingVertexCollection >.index(), Ref< RegionalMuonCandBxCollection >.index(), edm::Ref< PFRecHitCollection >.index(), edm::Ref< reco::TrackExtraCollection >.index(), edm::Ref< ConversionCollection >.index(), edm::Ref< L1MuonParticleCollection >.index(), edm::Ref< std::vector< pat::Electron > >.index(), edm::Ref< TrackMomConstraintAssociationCollection >.index(), edm::Ref< PhotonCoreCollection >.index(), edm::Ref< PFIsolatedTauTagInfoCollection >.index(), edm::Ref< edmNew::DetSetVector< TTCluster< T > >, TTCluster< T > >.index(), edm::Ref< std::vector< Trajectory > >.index(), Ref< JetBxCollection >.index(), Ref< reco::IsolatedPixelTrackCandidateCollection >.index(), edm::Ref< MuonBxCollection >.index(), edm::Ref< ME0SegmentCollection >.index(), edm::Ref< std::vector< L1TTTrackType > >.index(), edm::Ref< GsfPFRecTrackCollection >.index(), edm::Ref< PFTauCollection >.index(), Ref< PFClusterShapeAssociationCollection >.index(), edm::Ref< l1t::PFTrackCollection >.index(), Ref< collection >.index(), edm::Ref< L1JetParticleCollection >.index(), Ref< EGammaBxCollection >.index(), edm::Ref< std::vector< IPTI > >.index(), edm::Ref< SuperClusterCollection >.index(), edm::Ref< GsfTrackVtxConstraintAssociationCollection >.index(), Ref< reco::GenParticleCollection >.index(), edm::Ref< TrajTrackAssociationCollection >.index(), edm::Ref< CastorClusterCollection >.index(), edm::Ref< GenParticleCollection >.index(), edm::Ref< ElectronSeedCollection >.index(), edm::Ref< L1GctEtHadCollection >.index(), Ref< reco::GenJetCollection >.index(), edm::Ref< GEMSegmentCollection >.index(), edm::Ref< l1t::PFClusterCollection >.index(), vector< pat::Tau >.index(), edm::Ref< CaloTowerCollection >.index(), edm::Ref< L1GctHFBitCountsCollection >.index(), edm::Ref< BXVector >.index(), key_type.index(), edm::Ref< TrackParamConstraintAssociationCollection >.index(), vector< pat::Jet >.index(), edm::Ref< TrajGsfTrackAssociationCollection >.index(), edm::Ref< PFDisplacedTrackerVertexCollection >.index(), vector< pat::Muon >.index(), pat::strbitset.index(), edm::ProductResolverIndexHelper::Item.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(), SequenceTypes._ModuleSequenceType.index(), BeautifulSoup.Tag.index(), Json::ValueIteratorBase.index(), and min().

Referenced by BeautifulSoup.PageElement.append().

◆ nextGenerator()

def BeautifulSoup.PageElement.nextGenerator (   self)

Definition at line 386 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findAllNext().

◆ nextSiblingGenerator()

def BeautifulSoup.PageElement.nextSiblingGenerator (   self)

Definition at line 392 of file BeautifulSoup.py.

392  def nextSiblingGenerator(self):
393  i = self
394  while i is not None:
395  i = i.nextSibling
396  yield i
397 

Referenced by BeautifulSoup.PageElement.findNextSiblings().

◆ parentGenerator()

def BeautifulSoup.PageElement.parentGenerator (   self)

Definition at line 410 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findParents().

◆ previousGenerator()

def BeautifulSoup.PageElement.previousGenerator (   self)

Definition at line 398 of file BeautifulSoup.py.

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

Referenced by BeautifulSoup.PageElement.findAllPrevious().

◆ previousSiblingGenerator()

def BeautifulSoup.PageElement.previousSiblingGenerator (   self)

Definition at line 404 of file BeautifulSoup.py.

404  def previousSiblingGenerator(self):
405  i = self
406  while i is not None:
407  i = i.previousSibling
408  yield i
409 

Referenced by BeautifulSoup.PageElement.findPreviousSiblings().

◆ replaceWith()

def BeautifulSoup.PageElement.replaceWith (   self,
  replaceWith 
)

Definition at line 144 of file BeautifulSoup.py.

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 

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

◆ replaceWithChildren()

def BeautifulSoup.PageElement.replaceWithChildren (   self)

Definition at line 159 of file BeautifulSoup.py.

159  def replaceWithChildren(self):
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 

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

◆ setup()

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 

◆ substituteEncoding()

def BeautifulSoup.PageElement.substituteEncoding (   self,
  str,
  encoding = None 
)

Definition at line 417 of file BeautifulSoup.py.

417  def substituteEncoding(self, str, encoding=None):
418  encoding = encoding or "utf-8"
419  return str.replace("%SOUP-ENCODING%", encoding)
420 

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

◆ toEncoding()

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.

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 

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

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

Member Data Documentation

◆ BARE_AMPERSAND_OR_BRACKET

BeautifulSoup.PageElement.BARE_AMPERSAND_OR_BRACKET
static

◆ fetchNextSiblings

BeautifulSoup.PageElement.fetchNextSiblings
static

Definition at line 291 of file BeautifulSoup.py.

◆ fetchParents

BeautifulSoup.PageElement.fetchParents
static

Definition at line 337 of file BeautifulSoup.py.

◆ fetchPrevious

BeautifulSoup.PageElement.fetchPrevious
static

Definition at line 304 of file BeautifulSoup.py.

◆ fetchPreviousSiblings

BeautifulSoup.PageElement.fetchPreviousSiblings
static

Definition at line 318 of file BeautifulSoup.py.

◆ next

BeautifulSoup.PageElement.next

Definition at line 137 of file BeautifulSoup.py.

◆ nextSibling

BeautifulSoup.PageElement.nextSibling

◆ parent

BeautifulSoup.PageElement.parent

◆ previous

BeautifulSoup.PageElement.previous

◆ previousSibling

BeautifulSoup.PageElement.previousSibling

Definition at line 138 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement.extract().

◆ XML_ENTITIES_TO_SPECIAL_CHARS

BeautifulSoup.PageElement.XML_ENTITIES_TO_SPECIAL_CHARS
static

◆ XML_SPECIAL_CHARS_TO_ENTITIES

BeautifulSoup.PageElement.XML_SPECIAL_CHARS_TO_ENTITIES
static

Definition at line 130 of file BeautifulSoup.py.

Referenced by BeautifulSoup.PageElement._sub_entity().

min
T min(T a, T b)
Definition: MathUtil.h:58
AlcaSiPixelAliHarvester0T_cff.method
method
Definition: AlcaSiPixelAliHarvester0T_cff.py:41
betterConfigParser.unicode
unicode
Definition: betterConfigParser.py:13
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
str
#define str(s)
Definition: TestProcessor.cc:51
mps_setup.append
append
Definition: mps_setup.py:85
genfragment_ptgun_cfg.generator
generator
Definition: genfragment_ptgun_cfg.py:4
extract
int extract(std::vector< int > *output, const std::string &dati)
Definition: InvMatrixUtils.cc:251
edm::eventsetup::heterocontainer::insert
bool insert(Storage &iStorage, ItemType *iItem, const IdTag &iIdTag)
Definition: HCMethods.h:50
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46