#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/breadth_first_search.hpp>
#include <boost/graph/depth_first_search.hpp>
#include <boost/graph/graphviz.hpp>
#include <iterator>
#include <numeric>
#include <unordered_map>
#include "FWCore/Framework/interface/ConsumesCollector.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ProducerBase.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "DataFormats/ForwardDetId/interface/HGCalDetId.h"
#include "DataFormats/HcalDetId/interface/HcalDetId.h"
#include "DataFormats/HcalDetId/interface/HcalTestNumbering.h"
#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
#include "DataFormats/SiPixelDetId/interface/PixelSubdetector.h"
#include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
#include "SimDataFormats/CaloAnalysis/interface/CaloParticle.h"
#include "SimDataFormats/CaloAnalysis/interface/CaloParticleFwd.h"
#include "SimDataFormats/CaloAnalysis/interface/SimCluster.h"
#include "SimDataFormats/CaloAnalysis/interface/SimClusterFwd.h"
#include "SimDataFormats/CaloHit/interface/PCaloHit.h"
#include "SimDataFormats/CaloTest/interface/HGCalTestNumbering.h"
#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
#include "SimDataFormats/Vertex/interface/SimVertex.h"
#include "SimGeneral/MixingModule/interface/DigiAccumulatorMixMod.h"
#include "SimGeneral/MixingModule/interface/DigiAccumulatorMixModFactory.h"
#include "SimGeneral/MixingModule/interface/PileUpEventPrincipal.h"
#include "SimGeneral/TrackingAnalysis/interface/EncodedTruthId.h"
#include "Geometry/CaloGeometry/interface/CaloGeometry.h"
#include "Geometry/HGCalGeometry/interface/HGCalGeometry.h"
#include "Geometry/HcalCommonData/interface/HcalHitRelabeller.h"
#include "Geometry/HcalTowerAlgo/interface/HcalGeometry.h"
#include "Geometry/Records/interface/CaloGeometryRecord.h"
Go to the source code of this file.
Classes | |
struct | CaloTruthAccumulator::calo_particles |
class | CaloTruthAccumulator |
struct | EdgeProperty |
struct | CaloTruthAccumulator::OutputCollections |
struct | VertexProperty |
Macros | |
#define | DEBUG false |
Typedefs | |
using | DecayChain = adjacency_list< listS, vecS, directedS, VertexMotherParticleProperty, EdgeParticleClustersProperty > |
using | EdgeParticleClustersProperty = property< edge_weight_t, EdgeProperty > |
using | VertexMotherParticleProperty = property< vertex_name_t, VertexProperty > |
Functions | |
static const edm::DigiAccumulatorMixModPluginFactory::PMaker< CaloTruthAccumulator > | s_maker__LINE__ ("CaloTruthAccumulator") |
#define DEBUG false |
Definition at line 1 of file CaloTruthAccumulator.cc.
Referenced by CaloTruthAccumulator::accumulateEvent().
using DecayChain = adjacency_list<listS, vecS, directedS, VertexMotherParticleProperty, EdgeParticleClustersProperty> |
Definition at line 122 of file CaloTruthAccumulator.cc.
using EdgeParticleClustersProperty = property<edge_weight_t, EdgeProperty> |
Definition at line 120 of file CaloTruthAccumulator.cc.
using VertexMotherParticleProperty = property<vertex_name_t, VertexProperty> |
Definition at line 121 of file CaloTruthAccumulator.cc.
|
static |