CMS 3D CMS Logo

Functions

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DataFormats/ParticleFlowCandidate/src/PFCandidate.cc File Reference

#include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/GsfTrackReco/interface/GsfTrack.h"
#include "DataFormats/ParticleFlowReco/interface/PFDisplacedVertex.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidateElectronExtra.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidatePhotonExtra.h"
#include "DataFormats/EgammaCandidates/interface/Conversion.h"
#include "DataFormats/EgammaCandidates/interface/Photon.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <ostream>
#include <iomanip>
#include "DataFormats/ParticleFlowCandidate/src/CountBits.h"

Go to the source code of this file.

Functions

static unsigned long long bitPackRefInfo (const edm::RefCore &iCore, size_t iIndex)

Function Documentation

static unsigned long long bitPackRefInfo ( const edm::RefCore iCore,
size_t  iIndex 
) [static]

Definition at line 256 of file PFCandidate.cc.

References edm::RefCore::id().

Referenced by reco::PFCandidate::storeRefInfo().

                                                                                {
  unsigned long long bitPack = iIndex;
  bitPack |= static_cast<unsigned long long>(iCore.id().productIndex())<<32;
  bitPack |= static_cast<unsigned long long>(iCore.id().processIndex())<<48;
  return bitPack;
}