LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
LArPandoraEvent.cxx
Go to the documentation of this file.
1 
8 
9 namespace lar_pandora {
10 
12  art::Event* pEvent,
13  const Labels& inputLabels,
14  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  const PFParticleVector& selectedPFParticles)
27  : m_pProducer(event.m_pProducer)
28  , m_pEvent(event.m_pEvent)
29  , m_labels(event.m_labels)
31  , m_hits(event.m_hits)
32  {
33  m_pfParticles = selectedPFParticles;
34 
35  // Only collect objects associated to a selected particles
36  for (const auto& part : selectedPFParticles) {
45 
47  }
48 
49  // Filter the association maps from the input event to only include objects associated to the selected particles
75 
79  }
80 
81  //------------------------------------------------------------------------------------------------------------------------------------------
82 
84  {
94 
109 
110  if (m_shouldProduceT0s) {
111  this->WriteCollection(m_t0s);
113  }
114  }
115 
116  //------------------------------------------------------------------------------------------------------------------------------------------
117 
119  {
130 
131  this->GetAssociationMap(
133  this->GetAssociationMap(
140  this->GetAssociationMap(
148 
149  if (m_shouldProduceT0s) {
152  }
153  }
154 
155  //------------------------------------------------------------------------------------------------------------------------------------------
156  //------------------------------------------------------------------------------------------------------------------------------------------
157 
158  LArPandoraEvent::Labels::Labels(const std::string& pfParticleProducerLabel,
159  const std::string& hitProducerLabel)
160  {
161  m_labels.emplace(PFParticleLabel, pfParticleProducerLabel);
162  m_labels.emplace(SpacePointLabel, pfParticleProducerLabel);
163  m_labels.emplace(ClusterLabel, pfParticleProducerLabel);
164  m_labels.emplace(VertexLabel, pfParticleProducerLabel);
165  m_labels.emplace(SliceLabel, pfParticleProducerLabel);
166  m_labels.emplace(TrackLabel, pfParticleProducerLabel);
167  m_labels.emplace(ShowerLabel, pfParticleProducerLabel);
168  m_labels.emplace(T0Label, pfParticleProducerLabel);
169  m_labels.emplace(PFParticleMetadataLabel, pfParticleProducerLabel);
170  m_labels.emplace(PCAxisLabel, pfParticleProducerLabel);
171  m_labels.emplace(HitLabel, hitProducerLabel);
172 
173  m_labels.emplace(PFParticleToSpacePointLabel, pfParticleProducerLabel);
174  m_labels.emplace(PFParticleToClusterLabel, pfParticleProducerLabel);
175  m_labels.emplace(PFParticleToVertexLabel, pfParticleProducerLabel);
176  m_labels.emplace(PFParticleToSliceLabel, pfParticleProducerLabel);
177  m_labels.emplace(PFParticleToTrackLabel, pfParticleProducerLabel);
178  m_labels.emplace(PFParticleToShowerLabel, pfParticleProducerLabel);
179  m_labels.emplace(PFParticleToT0Label, pfParticleProducerLabel);
180  m_labels.emplace(PFParticleToMetadataLabel, pfParticleProducerLabel);
181  m_labels.emplace(PFParticleToPCAxisLabel, pfParticleProducerLabel);
182  m_labels.emplace(SpacePointToHitLabel, pfParticleProducerLabel);
183  m_labels.emplace(ClusterToHitLabel, pfParticleProducerLabel);
184  m_labels.emplace(SliceToHitLabel, pfParticleProducerLabel);
185  m_labels.emplace(TrackToHitLabel, pfParticleProducerLabel);
186  m_labels.emplace(ShowerToHitLabel, pfParticleProducerLabel);
187  m_labels.emplace(ShowerToPCAxisLabel, pfParticleProducerLabel);
188  }
189 
190  //------------------------------------------------------------------------------------------------------------------------------------------
191 
192  LArPandoraEvent::Labels::Labels(const std::string& pfParticleProducerLabel,
193  const std::string& trackProducerLabel,
194  const std::string& showerProducerLabel,
195  const std::string& hitProducerLabel)
196  {
197  m_labels.emplace(PFParticleLabel, pfParticleProducerLabel);
198  m_labels.emplace(SpacePointLabel, pfParticleProducerLabel);
199  m_labels.emplace(ClusterLabel, pfParticleProducerLabel);
200  m_labels.emplace(VertexLabel, pfParticleProducerLabel);
201  m_labels.emplace(SliceLabel, pfParticleProducerLabel);
202  m_labels.emplace(TrackLabel, trackProducerLabel);
203  m_labels.emplace(ShowerLabel, showerProducerLabel);
204  m_labels.emplace(T0Label, pfParticleProducerLabel);
205  m_labels.emplace(PFParticleMetadataLabel, pfParticleProducerLabel);
206  m_labels.emplace(PCAxisLabel, showerProducerLabel);
207  m_labels.emplace(HitLabel, hitProducerLabel);
208 
209  m_labels.emplace(PFParticleToSpacePointLabel, pfParticleProducerLabel);
210  m_labels.emplace(PFParticleToClusterLabel, pfParticleProducerLabel);
211  m_labels.emplace(PFParticleToVertexLabel, pfParticleProducerLabel);
212  m_labels.emplace(PFParticleToSliceLabel, pfParticleProducerLabel);
213  m_labels.emplace(PFParticleToTrackLabel, trackProducerLabel);
214  m_labels.emplace(PFParticleToShowerLabel, showerProducerLabel);
215  m_labels.emplace(PFParticleToT0Label, pfParticleProducerLabel);
216  m_labels.emplace(PFParticleToMetadataLabel, pfParticleProducerLabel);
217  m_labels.emplace(PFParticleToPCAxisLabel, showerProducerLabel);
218  m_labels.emplace(SpacePointToHitLabel, pfParticleProducerLabel);
219  m_labels.emplace(ClusterToHitLabel, pfParticleProducerLabel);
220  m_labels.emplace(SliceToHitLabel, pfParticleProducerLabel);
221  m_labels.emplace(TrackToHitLabel, trackProducerLabel);
222  m_labels.emplace(ShowerToHitLabel, showerProducerLabel);
223  m_labels.emplace(ShowerToPCAxisLabel, showerProducerLabel);
224  }
225 
226  //------------------------------------------------------------------------------------------------------------------------------------------
227 
228  const std::string& LArPandoraEvent::Labels::GetLabel(const LabelType type) const
229  {
230  if (m_labels.find(type) == m_labels.end())
231  throw cet::exception("LArPandora")
232  << " LArPandoraEvent::GetLabel -- Label map doesn't contain label of requested type"
233  << std::endl;
234 
235  return m_labels.at(type);
236  }
237 
238  //------------------------------------------------------------------------------------------------------------------------------------------
239 
240  void LArPandoraEvent::Labels::SetLabel(const LabelType type, const std::string& label)
241  {
242  m_labels[type] = label;
243  }
244 
245 } // 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.
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.
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 objects 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.
TString part[npart]
Definition: Style.C:32
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.
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
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.