LArPandoraEvent.cxx
Go to the documentation of this file.
1 /**
2  * @file larpandora/LArPandoraEventBuilding/LArPandoraEvent.cxx
3  *
4  * @brief A description of all outputs from an instance of pandora with functionality to filter outputs
5  */
6 
8 
10 
11 namespace lar_pandora
12 {
13 
14 LArPandoraEvent::LArPandoraEvent(art::EDProducer *pProducer, art::Event *pEvent, const Labels &inputLabels, const bool shouldProduceT0s) :
15  m_pProducer(pProducer),
16  m_pEvent(pEvent),
17  m_labels(inputLabels),
18  m_shouldProduceT0s(shouldProduceT0s)
19 {
20  this->GetCollections();
21 }
22 
23 //------------------------------------------------------------------------------------------------------------------------------------------
24 
26  m_pProducer(event.m_pProducer),
27  m_pEvent(event.m_pEvent),
28  m_labels(event.m_labels),
30  m_hits(event.m_hits)
31 {
32  m_pfParticles = selectedPFParticles;
33 
34  // Only collect objects associated to a selected particles
35  for (const auto &part : selectedPFParticles)
36  {
45 
47  this->CollectAssociated(part, event.m_pfParticleT0Map, m_t0s);
48  }
49 
50  // Filter the association maps from the input event to only include objects associated to the selected particles
65 
68 }
69 
70 //------------------------------------------------------------------------------------------------------------------------------------------
71 
73 {
83 
98 
100  {
101  this->WriteCollection(m_t0s);
103  }
104 }
105 
106 //------------------------------------------------------------------------------------------------------------------------------------------
107 
109 {
120 
135 
136  if (m_shouldProduceT0s)
137  {
140  }
141 }
142 
143 //------------------------------------------------------------------------------------------------------------------------------------------
144 //------------------------------------------------------------------------------------------------------------------------------------------
145 
146 LArPandoraEvent::Labels::Labels(const std::string &pfParticleProducerLabel, const std::string &hitProducerLabel)
147 {
148  m_labels.emplace(PFParticleLabel, pfParticleProducerLabel);
149  m_labels.emplace(SpacePointLabel, pfParticleProducerLabel);
150  m_labels.emplace(ClusterLabel, pfParticleProducerLabel);
151  m_labels.emplace(VertexLabel, pfParticleProducerLabel);
152  m_labels.emplace(SliceLabel, pfParticleProducerLabel);
153  m_labels.emplace(TrackLabel, pfParticleProducerLabel);
154  m_labels.emplace(ShowerLabel, pfParticleProducerLabel);
155  m_labels.emplace(T0Label, pfParticleProducerLabel);
156  m_labels.emplace(PFParticleMetadataLabel, pfParticleProducerLabel);
157  m_labels.emplace(PCAxisLabel, pfParticleProducerLabel);
158  m_labels.emplace(HitLabel, hitProducerLabel);
159 
160  m_labels.emplace(PFParticleToSpacePointLabel, pfParticleProducerLabel);
161  m_labels.emplace(PFParticleToClusterLabel, pfParticleProducerLabel);
162  m_labels.emplace(PFParticleToVertexLabel, pfParticleProducerLabel);
163  m_labels.emplace(PFParticleToSliceLabel, pfParticleProducerLabel);
164  m_labels.emplace(PFParticleToTrackLabel, pfParticleProducerLabel);
165  m_labels.emplace(PFParticleToShowerLabel, pfParticleProducerLabel);
166  m_labels.emplace(PFParticleToT0Label, pfParticleProducerLabel);
167  m_labels.emplace(PFParticleToMetadataLabel, pfParticleProducerLabel);
168  m_labels.emplace(PFParticleToPCAxisLabel, pfParticleProducerLabel);
169  m_labels.emplace(SpacePointToHitLabel, pfParticleProducerLabel);
170  m_labels.emplace(ClusterToHitLabel, pfParticleProducerLabel);
171  m_labels.emplace(SliceToHitLabel, pfParticleProducerLabel);
172  m_labels.emplace(TrackToHitLabel, pfParticleProducerLabel);
173  m_labels.emplace(ShowerToHitLabel, pfParticleProducerLabel);
174  m_labels.emplace(ShowerToPCAxisLabel, pfParticleProducerLabel);
175 }
176 
177 //------------------------------------------------------------------------------------------------------------------------------------------
178 
179 LArPandoraEvent::Labels::Labels(const std::string &pfParticleProducerLabel, const std::string &trackProducerLabel, const std::string &showerProducerLabel,
180  const std::string &hitProducerLabel)
181 {
182  m_labels.emplace(PFParticleLabel, pfParticleProducerLabel);
183  m_labels.emplace(SpacePointLabel, pfParticleProducerLabel);
184  m_labels.emplace(ClusterLabel, pfParticleProducerLabel);
185  m_labels.emplace(VertexLabel, pfParticleProducerLabel);
186  m_labels.emplace(SliceLabel, pfParticleProducerLabel);
187  m_labels.emplace(TrackLabel, trackProducerLabel);
188  m_labels.emplace(ShowerLabel, showerProducerLabel);
189  m_labels.emplace(T0Label, pfParticleProducerLabel);
190  m_labels.emplace(PFParticleMetadataLabel, pfParticleProducerLabel);
191  m_labels.emplace(PCAxisLabel, showerProducerLabel);
192  m_labels.emplace(HitLabel, hitProducerLabel);
193 
194  m_labels.emplace(PFParticleToSpacePointLabel, pfParticleProducerLabel);
195  m_labels.emplace(PFParticleToClusterLabel, pfParticleProducerLabel);
196  m_labels.emplace(PFParticleToVertexLabel, pfParticleProducerLabel);
197  m_labels.emplace(PFParticleToSliceLabel, pfParticleProducerLabel);
198  m_labels.emplace(PFParticleToTrackLabel, trackProducerLabel);
199  m_labels.emplace(PFParticleToShowerLabel, showerProducerLabel);
200  m_labels.emplace(PFParticleToT0Label, pfParticleProducerLabel);
201  m_labels.emplace(PFParticleToMetadataLabel, pfParticleProducerLabel);
202  m_labels.emplace(PFParticleToPCAxisLabel, showerProducerLabel);
203  m_labels.emplace(SpacePointToHitLabel, pfParticleProducerLabel);
204  m_labels.emplace(ClusterToHitLabel, pfParticleProducerLabel);
205  m_labels.emplace(SliceToHitLabel, pfParticleProducerLabel);
206  m_labels.emplace(TrackToHitLabel, trackProducerLabel);
207  m_labels.emplace(ShowerToHitLabel, showerProducerLabel);
208  m_labels.emplace(ShowerToPCAxisLabel, showerProducerLabel);
209 }
210 
211 //------------------------------------------------------------------------------------------------------------------------------------------
212 
214 {
215  if (m_labels.find(type) == m_labels.end())
216  throw cet::exception("LArPandora") << " LArPandoraEvent::GetLabel -- Label map doesn't contain label of requested type" << std::endl;
217 
218  return m_labels.at(type);
219 }
220 
221 //------------------------------------------------------------------------------------------------------------------------------------------
222 
224 {
225  m_labels[type] = label;
226 }
227 
228 } // namespace lar_pandora
HitCollection m_hits
The input collection of Hits.
void WriteAssociation(const Association< L, R, D > &associationMap, const Collection< L > &collectionL, const Collection< R > &collectionR, const bool thisProducesR=true) const
Write a given association to the event.
PFParticleToVertexAssoc m_pfParticleVertexMap
The input associations: PFParticle -> Vertex.
LArPandoraEvent class.
ClusterCollection m_clusters
The input collection of Clusters.
T0Collection m_t0s
The input collection of T0s.
std::string string
Definition: nybbler.cc:12
SliceToHitAssoc m_sliceHitMap
The input associations: Slice -> Hit.
SpacePointToHitAssoc m_spacePointHitMap
The input associations: SpacePoint -> Hit.
PFParticleToTrackAssoc m_pfParticleTrackMap
The input associations: PFParticle -> Track.
PFParticleToClusterAssoc m_pfParticleClusterMap
The input associations: PFParticle -> Cluster.
PFParticleToPCAxisAssoc m_pfParticlePCAxisMap
The input associations: PFParticle -> PCAxis.
Class to keep data related to recob::Hit associated with recob::Track.
void GetFilteredAssociationMap(const Collection< L > &collectionL, const Collection< R > &collectionR, const Association< L, R, D > &inputAssociationLtoR, Association< L, R, D > &outputAssociationLtoR) const
Gets the filtered mapping from objets in collectionL to objects that also exist in collectionR using ...
void SetLabel(const LabelType type, const std::string &label)
Set the label of a given type.
LArPandoraEvent(art::EDProducer *pProducer, art::Event *pEvent, const Labels &inputLabels, const bool shouldProduceT0s=false)
Constructor from an art::Event.
PCAxisCollection m_pcAxes
The input collection of PCAxes.
PFParticleCollection m_pfParticles
The input collection of PFParticles.
Labels(const std::string &pfParticleProducerLabel, const std::string &hitProducerLabel)
Minimal parametrised constructor. Sets all collection labels to be the same as the PFParticle produce...
void GetCollections()
Get the collections and associations from m_pEvent with the required labels.
ClusterToHitAssoc m_clusterHitMap
The input associations: Cluster -> Hit.
void CollectAssociated(const art::Ptr< L > &anObject, const Association< L, R, D > &associationLtoR, Collection< R > &associatedR) const
Collects all objects of type R with metadata D associated to a given object of type L...
PFParticleToPFParticleMetadataAssoc m_pfParticleMetadataMap
The input associations: PFParticle -> Metadata.
A description of all outputs from an instance of pandora with functionality to filter and merge multi...
SpacePointCollection m_spacePoints
The input collection of SpacePoints.
std::vector< art::Ptr< recob::PFParticle > > PFParticleVector
ShowerToHitAssoc m_showerHitMap
The input associations: Shower -> Hit.
art::Event * m_pEvent
The event to consider.
PFParticleToT0Assoc m_pfParticleT0Map
The input associations: PFParticle -> T0.
PFParticleToSliceAssoc m_pfParticleSliceMap
The input associations: PFParticle -> Slice.
void GetAssociationMap(const Collection< L > &collectionL, const Labels::LabelType &inputLabel, Association< L, R, D > &outputAssociationMap) const
Get the mapping between two collections with metadata using the specified label.
ShowerToPCAxisAssoc m_showerPCAxisMap
The input associations: PCAxis -> Shower.
art::EDProducer * m_pProducer
The producer which should write the output collections and associations.
Class to handle the required producer labels.
TrackToHitAssoc m_trackHitMap
The input associations: Track -> Hit.
static QCString type
Definition: declinfo.cpp:672
SliceCollection m_slices
The input collection of Slices.
PFParticleToShowerAssoc m_pfParticleShowerMap
The input associations: PFParticle -> Shower.
Labels m_labels
A set of labels describing the producers for each input collection.
void GetCollection(const Labels::LabelType &inputLabel, Collection< T > &outputCollection) const
Gets a given collection from m_pEvent with the label supplied.
void WriteCollection(const Collection< T > &collection) const
Write a given collection to the event.
VertexCollection m_vertices
The input collection of Vertices.
const std::string & GetLabel(const LabelType type) const
Get the label of a given type.
ShowerCollection m_showers
The input collection of Showers.
PFParticleMetadataCollection m_metadata
The input collection of PFParticle metadata.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
QTextStream & endl(QTextStream &s)
Event finding and building.
TrackCollection m_tracks
The input collection of Tracks.
PFParticleToSpacePointAssoc m_pfParticleSpacePointMap
The input associations: PFParticle -> SpacePoint.
bool m_shouldProduceT0s
If T0s should be produced (usually only true for use cases with multiple drift volumes) ...
void WriteToEvent() const
Write (put) the collections in this LArPandoraEvent to the art::Event.