ClusterCheater_module.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // ClusterCheater module
4 //
5 // brebel@fnal.gov
6 //
7 ////////////////////////////////////////////////////////////////////////
8 #include <algorithm>
9 #include <string>
10 
11 // LArSoft includes
28 #include "nug4/ParticleNavigation/EmEveIdCalculator.h"
29 
30 // Framework includes
36 #include "fhiclcpp/ParameterSet.h"
38 
39 namespace cluster {
41  public:
42  explicit ClusterCheater(fhicl::ParameterSet const& pset);
43 
44  private:
45  void produce(art::Event& evt) override;
46 
47  std::string fMCGeneratorLabel; ///< label for module to get MC truth information
48  std::string fHitModuleLabel; ///< label for module creating recob::Hit objects
49  std::string fG4ModuleLabel; ///< label for module running G4 and making particles, etc
50  unsigned int fMinHits; ///< minimum number of hits to make a cluster
51  };
52 }
53 
54 namespace cluster {
55 
56  struct eveLoc {
57  eveLoc(int id, geo::PlaneID plnID) : eveID(id), planeID(plnID) {}
58 
59  friend bool
60  operator<(eveLoc const& a, eveLoc const& b)
61  {
62  if (a.eveID != b.eveID) return a.eveID < b.eveID;
63 
64  return a.planeID < b.planeID;
65  }
66 
67  int eveID;
69  };
70 
71  bool
73  {
74  return a->WireID().Wire < b->WireID().Wire;
75  }
76 
77  //--------------------------------------------------------------------
79  {
80  fMCGeneratorLabel = pset.get<std::string>("MCGeneratorLabel", "generator");
81  fHitModuleLabel = pset.get<std::string>("HitModuleLabel", "hit");
82  fG4ModuleLabel = pset.get<std::string>("G4ModuleLabel", "largeant");
83  fMinHits = pset.get<unsigned int>("MinHits", 1);
84 
85  produces<std::vector<recob::Cluster>>();
86  produces<art::Assns<recob::Cluster, recob::Hit>>();
87  }
88 
89  //--------------------------------------------------------------------
90  void
92  {
96 
97  // grab the hits that have been reconstructed
99  evt.getByLabel(fHitModuleLabel, hitcol);
100 
101  // make a vector of them - we aren't writing anything out to a file
102  // so no need for a art::PtrVector here
103  std::vector<art::Ptr<recob::Hit>> hits;
104  art::fill_ptr_vector(hits, hitcol);
105 
106  // adopt an EmEveIdCalculator to find the eve ID.
107  // will return a primary particle if it doesn't find
108  // a responsible particle for an EM process
109  pi_serv->SetEveIdCalculator(new sim::EmEveIdCalculator);
110 
111  MF_LOG_DEBUG("ClusterCheater") << pi_serv->ParticleList();
112 
113  // make a map of vectors of art::Ptrs keyed by eveID values and
114  // location in cryostat, TPC, plane coordinates of where the hit originated
115  std::map<eveLoc, std::vector<art::Ptr<recob::Hit>>> eveHitMap;
116 
117  auto const clockData = art::ServiceHandle<detinfo::DetectorClocksService const>()->DataFor(evt);
118 
119  // loop over all hits and fill in the map
120  for (auto const& itr : hits) {
121 
122  std::vector<sim::TrackIDE> eveides = bt_serv->HitToEveTrackIDEs(clockData, itr);
123 
124  // loop over all eveides for this hit
125  for (size_t e = 0; e < eveides.size(); ++e) {
126 
127  // don't worry about eve particles that contribute less than 10% of the
128  // energy in the current hit
129  if (eveides[e].energyFrac < 0.1) continue;
130 
131  eveLoc el(eveides[e].trackID, itr->WireID().planeID());
132 
133  eveHitMap[el].push_back(itr);
134 
135  } // end loop over eve IDs for this hit
136 
137  } // end loop over hits
138 
139  // loop over the map and make clusters
140  std::unique_ptr<std::vector<recob::Cluster>> clustercol(new std::vector<recob::Cluster>);
141  std::unique_ptr<art::Assns<recob::Cluster, recob::Hit>> assn(
143 
144  auto const detProp =
146  util::GeometryUtilities const gser{*geo, clockData, detProp};
147 
148  // prepare the algorithm to compute the cluster characteristics;
149  // we use the "standard" one here; configuration would happen here,
150  // but we are using the default configuration for that algorithm
152 
153  for (auto hitMapItr : eveHitMap) {
154 
155  // ================================================================================
156  // === Only keeping clusters with fMinHits
157  // ================================================================================
158  if (hitMapItr.second.size() < fMinHits) continue;
159 
160  // get the center of this plane in world coordinates
161  double xyz[3] = {0.};
162  double xyz2[3] = {0.};
163  double local[3] = {0.};
164  unsigned int cryostat = hitMapItr.first.planeID.Cryostat;
165  unsigned int tpc = hitMapItr.first.planeID.TPC;
166  unsigned int plane = hitMapItr.first.planeID.Plane;
167  geo->Cryostat(cryostat).TPC(tpc).Plane(plane).LocalToWorld(local, xyz);
168 
169  MF_LOG_DEBUG("ClusterCheater")
170  << "make cluster for eveID: " << hitMapItr.first.eveID << " in cryostat: " << cryostat
171  << " tpc: " << tpc << " plane: " << plane << " view: " << hitMapItr.second.at(0)->View();
172 
173  // get the direction of this particle in the current cryostat, tpc and plane
174  const simb::MCParticle* part = pi_serv->TrackIdToParticle_P(hitMapItr.first.eveID);
175  if (!part) continue;
176 
177  // now set the y and z coordinates of xyz to be the first point on the particle
178  // trajectory and use the initial directions to determine the dT/dW
179  // multiply the direction cosine by 10 to give a decent lever arm for determining
180  // dW
181  xyz[1] = part->Vy();
182  xyz[2] = part->Vz();
183  xyz2[0] = xyz[0];
184  xyz2[1] = xyz[1] + 10. * part->Py() / part->P();
185  xyz2[2] = xyz[2] + 10. * part->Pz() / part->P();
186 
187  // convert positions to wire and time
188  unsigned int w1 = 0;
189  unsigned int w2 = 0;
190 
191  try {
192  w1 = geo->NearestWire(xyz, plane, tpc, cryostat);
193  }
194  catch (cet::exception& e) {
195  w1 = atoi(e.explain_self().substr(e.explain_self().find("#") + 1, 5).c_str());
196  }
197  try {
198  w2 = geo->NearestWire(xyz2, plane, tpc, cryostat);
199  }
200  catch (cet::exception& e) {
201  w2 = atoi(e.explain_self().substr(e.explain_self().find("#") + 1, 5).c_str());
202  }
203 
204  // sort the vector of hits with respect to the directionality of the wires determined by
205  if (w2 < w1)
206  std::sort(hitMapItr.second.rbegin(), hitMapItr.second.rend(), sortHitsByWire);
207  else
208  std::sort(hitMapItr.second.begin(), hitMapItr.second.end(), sortHitsByWire);
209 
210  // set the start and end wires and times
211  double startWire = hitMapItr.second.front()->WireID().Wire;
212  double startTime = hitMapItr.second.front()->PeakTimeMinusRMS();
213  double endWire = hitMapItr.second.back()->WireID().Wire;
214  double endTime = hitMapItr.second.back()->PeakTimePlusRMS();
215 
216  // add a cluster to the collection. Make the ID be the eve particle
217  // trackID*1000 + plane number*100 + tpc*10 + cryostat that the current hits are from
218  ///\todo: The above encoding of the ID probably won't work for DUNE and should be revisited
219  const geo::PlaneID& planeID = hitMapItr.first.planeID;
220  recob::Cluster::ID_t clusterID =
221  (((hitMapItr.first.eveID) * 10 + planeID.Plane) * 10 +
222  planeID.TPC // 10 is weird choice for DUNE FD... should be 1000! FIXME
223  ) *
224  10 +
225  planeID.Cryostat;
226 
227  // feed the algorithm with all the cluster hits
228  ClusterParamAlgo.ImportHits(gser, hitMapItr.second);
229 
230  // create the recob::Cluster directly in the vector
231  ClusterCreator cluster(gser,
232  ClusterParamAlgo, // algo
233  startWire, // start_wire
234  0., // sigma_start_wire
235  startTime, // start_tick
236  0., // sigma_start_tick
237  endWire, // end_wire
238  0., // sigma_end_wire
239  endTime, // end_tick
240  0., // sigma_end_tick
241  clusterID, // ID
242  hitMapItr.second.at(0)->View(), // view
243  planeID, // plane
244  recob::Cluster::Sentry // sentry
245  );
246 
247  clustercol->emplace_back(cluster.move());
248 
249  // association the hits to this cluster
250  util::CreateAssn(evt, *clustercol, hitMapItr.second, *assn);
251 
252  mf::LogInfo("ClusterCheater") << "adding cluster: \n"
253  << clustercol->back() << "\nto collection.";
254 
255  } // end loop over the map
256 
257  evt.put(std::move(clustercol));
258  evt.put(std::move(assn));
259  } // end produce
260 
262 }
double Py(const int i=0) const
Definition: MCParticle.h:231
Class managing the creation of a new recob::Cluster object.
std::string fMCGeneratorLabel
label for module to get MC truth information
Encapsulate the construction of a single cyostat.
eveLoc(int id, geo::PlaneID plnID)
std::string string
Definition: nybbler.cc:12
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
const simb::MCParticle * TrackIdToParticle_P(int id) const
geo::WireID WireID() const
Definition: Hit.h:233
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.h:20
void SetEveIdCalculator(sim::EveIdCalculator *ec)
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:212
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:580
void produce(art::Event &evt) override
Cluster finding and building.
unsigned int fMinHits
minimum number of hits to make a cluster
std::string fHitModuleLabel
label for module creating recob::Hit objects
art framework interface to geometry description
static const SentryArgument_t Sentry
An instance of the sentry object.
Definition: Cluster.h:182
void ImportHits(util::GeometryUtilities const &gser, Iter begin, Iter end)
Calls SetHits() with the hits in the sequence.
bool sortHitsByWire(art::Ptr< recob::Hit > a, art::Ptr< recob::Hit > b)
ClusterCheater(fhicl::ParameterSet const &pset)
bool operator<(ProductInfo const &a, ProductInfo const &b)
Definition: ProductInfo.cc:51
bool getByLabel(std::string const &label, std::string const &instance, Handle< PROD > &result) const
Definition: DataViewImpl.h:633
const double e
#define DEFINE_ART_MODULE(klass)
Definition: ModuleMacros.h:67
const double a
def move(depos, offset)
Definition: depos.py:107
Helper functions to create a cluster.
Wrapper for ClusterParamsAlgBase objects to accept diverse input.
double P(const int i=0) const
Definition: MCParticle.h:234
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
Wrapper for ClusterParamsAlgBase objects to accept arbitrary input.
ProductID put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: DataViewImpl.h:686
bool CreateAssn(PRODUCER const &prod, art::Event &evt, std::vector< T > const &a, art::Ptr< U > const &b, art::Assns< U, T > &assn, std::string a_instance, size_t indx=UINT_MAX)
Creates a single one-to-one association.
PlaneID_t Plane
Index of the plane within its TPC.
Definition: geo_types.h:493
Definition of data types for geometry description.
const sim::ParticleList & ParticleList() const
Declaration of signal hit object.
Encapsulate the construction of a single detector plane.
const TPCGeo & TPC(unsigned int itpc) const
Return the itpc&#39;th TPC in the cryostat.
Definition: CryostatGeo.cxx:93
std::vector< sim::TrackIDE > HitToEveTrackIDEs(detinfo::DetectorClocksData const &clockData, recob::Hit const &hit) const
#define MF_LOG_DEBUG(id)
double Pz(const int i=0) const
Definition: MCParticle.h:232
double Vz(const int i=0) const
Definition: MCParticle.h:223
static bool * b
Definition: config.cpp:1043
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:263
Interface to class computing cluster parameters.
TCEvent evt
Definition: DataStructs.cxx:7
void fill_ptr_vector(std::vector< Ptr< T >> &ptrs, H const &h)
Definition: Ptr.h:297
TPCID_t TPC
Index of the TPC within its cryostat.
Definition: geo_types.h:406
LArSoft geometry interface.
Definition: ChannelGeo.h:16
std::string fG4ModuleLabel
label for module running G4 and making particles, etc
void LocalToWorld(const double *plane, double *world) const
Transform point from local plane frame to world frame.
Definition: PlaneGeo.h:1343
double Vy(const int i=0) const
Definition: MCParticle.h:222
int ID_t
Type of cluster ID.
Definition: Cluster.h:74
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
Encapsulate the construction of a single detector plane.