LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ShowerUnidirectiondEdx_tool.cc
Go to the documentation of this file.
1 //############################################################################
2 //### Name: ShowerUnidirectiondEdx ###
3 //### Author: Ed Tyley ###
4 //### Date: 13.05.19 ###
5 //### Description: Tool for finding the dEdx of the start track of the ###
6 //### shower using the standard calomitry module. Derived ###
7 //### from the EMShower_module.cc ###
8 //############################################################################
9 
10 //Framework Includes
12 
13 //LArSoft Includes
20 
21 namespace ShowerRecoTools {
22 
24 
25  public:
27 
28  //Generic Direction Finder
29  int CalculateElement(const art::Ptr<recob::PFParticle>& pfparticle,
30  art::Event& Event,
31  reco::shower::ShowerElementHolder& ShowerEleHolder) override;
32 
33  private:
34  //Define the services and algorithms
38 
39  //fcl parameters.
40  int fVerbose;
42  dEdxTrackLength; //Max length from a hit can be to the start point in cm.
43  bool fMaxHitPlane; //Set the best planes as the one with the most hits
44  bool fMissFirstPoint; //Do not use any hits from the first wire.
45  bool fSumHitSnippets; // Whether to treat hits individually or only one hit per snippet
51  };
52 
54  : IShowerTool(pset.get<fhicl::ParameterSet>("BaseTools"))
55  , fCalorimetryAlg(pset.get<fhicl::ParameterSet>("CalorimetryAlg"))
56  , fVerbose(pset.get<int>("Verbose"))
57  , fdEdxTrackLength(pset.get<float>("dEdxTrackLength"))
58  , fMaxHitPlane(pset.get<bool>("MaxHitPlane"))
59  , fMissFirstPoint(pset.get<bool>("MissFirstPoint"))
60  , fSumHitSnippets(pset.get<bool>("SumHitSnippets"))
61  , fShowerStartPositionInputLabel(pset.get<std::string>("ShowerStartPositionInputLabel"))
62  , fInitialTrackHitsInputLabel(pset.get<std::string>("InitialTrackHitsInputLabel"))
63  , fShowerDirectionInputLabel(pset.get<std::string>("ShowerDirectionInputLabel"))
64  , fShowerdEdxOutputLabel(pset.get<std::string>("ShowerdEdxOutputLabel"))
65  , fShowerBestPlaneOutputLabel(pset.get<std::string>("ShowerBestPlaneOutputLabel"))
66  {}
67 
69  art::Event& Event,
70  reco::shower::ShowerElementHolder& ShowerEleHolder)
71  {
72 
74 
75  // Shower dEdx calculation
76  if (!ShowerEleHolder.CheckElement(fShowerStartPositionInputLabel)) {
77  if (fVerbose)
78  mf::LogError("ShowerUnidirectiondEdx") << "Start position not set, returning " << std::endl;
79  return 1;
80  }
81  if (!ShowerEleHolder.CheckElement(fInitialTrackHitsInputLabel)) {
82  if (fVerbose)
83  mf::LogError("ShowerUnidirectiondEdx")
84  << "Initial Track Hits not set returning" << std::endl;
85  return 1;
86  }
87  if (!ShowerEleHolder.CheckElement(fShowerDirectionInputLabel)) {
88  if (fVerbose)
89  mf::LogError("ShowerUnidirectiondEdx") << "Shower Direction not set" << std::endl;
90  return 1;
91  }
92 
93  //Get the initial track hits
94  std::vector<art::Ptr<recob::Hit>> trackhits;
95  ShowerEleHolder.GetElement(fInitialTrackHitsInputLabel, trackhits);
96 
97  if (trackhits.empty()) {
98  if (fVerbose)
99  mf::LogWarning("ShowerUnidirectiondEdx") << "Not Hits in the initial track" << std::endl;
100  return 0;
101  }
102 
103  geo::Point_t ShowerStartPosition = {-999, -999, -999};
104  ShowerEleHolder.GetElement(fShowerStartPositionInputLabel, ShowerStartPosition);
105 
106  geo::Vector_t showerDir = {-999, -999, -999};
107  ShowerEleHolder.GetElement(fShowerDirectionInputLabel, showerDir);
108 
109  geo::TPCID vtxTPC = fGeom->FindTPCAtPosition(geo::vect::toPoint(ShowerStartPosition));
110 
111  // Split the track hits per plane
112  std::vector<double> dEdxVec;
113  std::vector<std::vector<art::Ptr<recob::Hit>>> trackHits;
114  unsigned int numPlanes = fChannelMap.Nplanes();
115  trackHits.resize(numPlanes);
116 
117  // Loop over the track hits and split into planes
118  for (unsigned int hitIt = 0; hitIt < trackhits.size(); ++hitIt) {
119  art::Ptr<recob::Hit> hit = trackhits.at(hitIt);
120  geo::PlaneID hitWire = hit->WireID();
121  geo::TPCID TPC = hitWire.asTPCID();
122 
123  //only get hits from the same TPC as the vertex
124  if (TPC == vtxTPC) { (trackHits.at(hitWire.Plane)).push_back(hit); }
125  }
126 
127  int bestHitsPlane = 0;
128  int bestPlaneHits = 0;
129  int bestPlane = -999;
130  double minPitch = 999;
131 
132  auto const clockData =
134  auto const detProp =
136 
137  for (unsigned int plane = 0; plane < numPlanes; ++plane) {
138  std::vector<art::Ptr<recob::Hit>> trackPlaneHits = trackHits.at(plane);
139 
140  std::map<art::Ptr<recob::Hit>, std::vector<art::Ptr<recob::Hit>>> hitSnippets;
141  if (fSumHitSnippets)
142  hitSnippets = IShowerTool::GetLArPandoraShowerAlg().OrganizeHits(trackPlaneHits);
143 
144  if (trackPlaneHits.size()) {
145 
146  double dEdx = -999;
147  double totQ = 0;
148  double avgT = 0;
149  double pitch = 0;
150 
151  //Calculate the pitch
152  double wirepitch = fChannelMap.Plane(trackPlaneHits.at(0)->WireID()).WirePitch();
153  double angleToVert =
155  trackPlaneHits[0]->WireID().planeID()) -
156  0.5 * TMath::Pi();
157  double cosgamma =
158  std::abs(std::sin(angleToVert) * showerDir.Y() + std::cos(angleToVert) * showerDir.Z());
159 
160  pitch = wirepitch / cosgamma;
161 
162  if (pitch) { // Check the pitch is calculated correctly
163  int nhits = 0;
164  std::vector<float> vQ;
165 
166  //Get the first wire
167  int w0 = trackPlaneHits.at(0)->WireID().Wire;
168 
169  for (auto const& hit : trackPlaneHits) {
170 
171  if (fSumHitSnippets && !hitSnippets.count(hit)) continue;
172 
173  // Get the wire for each hit
174  int w1 = hit->WireID().Wire;
175  if (fMissFirstPoint && w0 == w1) { continue; }
176 
177  //Ignore hits that are too far away.
178  if (std::abs((w1 - w0) * pitch) < dEdxTrackLength) {
179 
180  double q = hit->Integral();
181  if (fSumHitSnippets) {
182  for (const art::Ptr<recob::Hit> secondaryHit : hitSnippets[hit])
183  q += secondaryHit->Integral();
184  }
185 
186  vQ.push_back(q);
187  totQ += hit->Integral();
188  avgT += hit->PeakTime();
189  ++nhits;
190  }
191  }
192 
193  if (totQ) {
194  // Check if the pitch is the smallest yet (best plane)
195  if (pitch < minPitch) {
196  minPitch = pitch;
197  bestPlane = plane;
198  }
199 
200  //Get the median and calculate the dEdx using the algorithm.
201  double dQdx = TMath::Median(vQ.size(), &vQ[0]) / pitch;
202  dEdx = fCalorimetryAlg.dEdx_AREA(
203  clockData, detProp, dQdx, avgT / nhits, trackPlaneHits.at(0)->WireID().Plane);
204 
205  if (isinf(dEdx)) { dEdx = -999; };
206 
207  if (nhits > bestPlaneHits || ((nhits == bestPlaneHits) && (pitch < minPitch))) {
208  bestHitsPlane = plane;
209  bestPlaneHits = nhits;
210  }
211  }
212  dEdxVec.push_back(dEdx);
213  }
214  else {
215  throw cet::exception("ShowerUnidirectiondEdx")
216  << "pitch is 0. I can't think how it is 0? Stopping so I can tell you" << std::endl;
217  }
218  }
219  else { // if not (trackPlaneHits.size())
220  dEdxVec.push_back(-999);
221  }
222  trackPlaneHits.clear();
223  } //end loop over planes
224 
225  //TODO
226  std::vector<double> dEdxVecErr = {-999, -999, -999};
227 
228  ShowerEleHolder.SetElement(dEdxVec, dEdxVecErr, fShowerdEdxOutputLabel);
229 
230  //Set The best plane
231  if (fMaxHitPlane) { bestPlane = bestHitsPlane; }
232 
233  if (bestPlane == -999) {
234  throw cet::exception("ShowerUnidirectiondEdx") << "No best plane set";
235  }
236  else {
237  ShowerEleHolder.SetElement(bestPlane, fShowerBestPlaneOutputLabel);
238  }
239 
240  if (fVerbose > 1) {
241  std::cout << "Best Plane: " << bestPlane << std::endl;
242  for (unsigned int plane = 0; plane < dEdxVec.size(); plane++) {
243  std::cout << "Plane: " << plane << " with dEdx: " << dEdxVec[plane] << std::endl;
244  }
245  }
246 
247  return 0;
248  }
249 }
250 
#define DEFINE_ART_CLASS_TOOL(tool)
Definition: ToolMacros.h:42
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Vector_t
Type for representation of momenta in 3D space.
Definition: geo_vectors.h:160
The data type to uniquely identify a Plane.
Definition: geo_types.h:364
void SetElement(T &dataproduct, const std::string &Name, bool checktag=false)
constexpr auto abs(T v)
Returns the absolute value of the argument.
ShowerUnidirectiondEdx(const fhicl::ParameterSet &pset)
STL namespace.
double WireAngleToVertical(View_t view, TPCID const &tpcid) const
Returns the angle of the wires in the specified view from vertical.
cout<< "Opened file "<< fin<< " ixs= "<< ixs<< endl;if(ixs==0) hhh=(TH1F *) fff-> Get("h1")
Definition: AddMC.C:8
geo::WireID const & WireID() const
Initial tdc tick for hit.
Definition: Hit.h:290
MaybeLogger_< ELseverityLevel::ELsev_error, false > LogError
View_t View() const
Which coordinate does this plane measure.
Definition: PlaneGeo.h:155
TPCID FindTPCAtPosition(Point_t const &point) const
Returns the ID of the TPC at specified location.
art::ServiceHandle< geo::Geometry > fGeom
Interface for a class providing readout channel mapping to geometry.
parameter set interface
std::map< art::Ptr< recob::Hit >, std::vector< art::Ptr< recob::Hit > > > OrganizeHits(const std::vector< art::Ptr< recob::Hit >> &hits) const
bool CheckElement(const std::string &Name) const
Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
The data type to uniquely identify a TPC.
Definition: geo_types.h:306
PlaneID_t Plane
Index of the plane within its TPC.
Definition: geo_types.h:373
int GetElement(const std::string &Name, T &Element) const
int CalculateElement(const art::Ptr< recob::PFParticle > &pfparticle, art::Event &Event, reco::shower::ShowerElementHolder &ShowerEleHolder) override
float dEdx(detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const TCSlice &slc, TP3D &tp3d)
Definition: PFPUtils.cxx:2671
Detector simulation of raw signals on wires.
unsigned int Nplanes(TPCID const &tpcid=details::tpc_zero) const
Returns the total number of planes in the specified TPC.
const shower::LArPandoraShowerAlg & GetLArPandoraShowerAlg() const
Definition: IShowerTool.h:80
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
Definition: geo_vectors.h:180
decltype(auto) get(T &&obj)
ADL-aware version of std::to_string.
Definition: StdUtils.h:120
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
double dEdx_AREA(detinfo::DetectorClocksData const &clock_data, detinfo::DetectorPropertiesData const &det_prop, recob::Hit const &hit, double pitch, double T0=0) const
PlaneGeo const & Plane(TPCID const &tpcid, View_t view) const
Returns the specified wire.
art framework interface to geometry description
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
constexpr TPCID const & asTPCID() const
Conversion to PlaneID (for convenience of notation).
Definition: geo_types.h:409