78 mf::LogError(
"ShowerUnidirectiondEdx") <<
"Start position not set, returning " << std::endl;
84 <<
"Initial Track Hits not set returning" << std::endl;
89 mf::LogError(
"ShowerUnidirectiondEdx") <<
"Shower Direction not set" << std::endl;
94 std::vector<art::Ptr<recob::Hit>> trackhits;
97 if (trackhits.empty()) {
99 mf::LogWarning(
"ShowerUnidirectiondEdx") <<
"Not Hits in the initial track" << std::endl;
112 std::vector<double> dEdxVec;
113 std::vector<std::vector<art::Ptr<recob::Hit>>> trackHits;
115 trackHits.resize(numPlanes);
118 for (
unsigned int hitIt = 0; hitIt < trackhits.size(); ++hitIt) {
124 if (TPC == vtxTPC) { (trackHits.at(hitWire.
Plane)).push_back(hit); }
127 int bestHitsPlane = 0;
128 int bestPlaneHits = 0;
129 int bestPlane = -999;
130 double minPitch = 999;
132 auto const clockData =
137 for (
unsigned int plane = 0; plane < numPlanes; ++plane) {
138 std::vector<art::Ptr<recob::Hit>> trackPlaneHits = trackHits.at(plane);
140 std::map<art::Ptr<recob::Hit>, std::vector<art::Ptr<recob::Hit>>> hitSnippets;
144 if (trackPlaneHits.size()) {
152 double wirepitch =
fChannelMap.
Plane(trackPlaneHits.at(0)->WireID()).WirePitch();
155 trackPlaneHits[0]->WireID().planeID()) -
158 std::abs(std::sin(angleToVert) * showerDir.Y() + std::cos(angleToVert) * showerDir.Z());
160 pitch = wirepitch / cosgamma;
164 std::vector<float> vQ;
167 int w0 = trackPlaneHits.at(0)->WireID().Wire;
169 for (
auto const&
hit : trackPlaneHits) {
174 int w1 =
hit->WireID().Wire;
180 double q =
hit->Integral();
183 q += secondaryHit->Integral();
187 totQ +=
hit->Integral();
188 avgT +=
hit->PeakTime();
195 if (pitch < minPitch) {
201 double dQdx = TMath::Median(vQ.size(), &vQ[0]) / pitch;
203 clockData, detProp, dQdx, avgT / nhits, trackPlaneHits.at(0)->WireID().Plane);
205 if (isinf(dEdx)) { dEdx = -999; };
207 if (nhits > bestPlaneHits || ((nhits == bestPlaneHits) && (pitch < minPitch))) {
208 bestHitsPlane = plane;
209 bestPlaneHits = nhits;
212 dEdxVec.push_back(dEdx);
216 <<
"pitch is 0. I can't think how it is 0? Stopping so I can tell you" << std::endl;
220 dEdxVec.push_back(-999);
222 trackPlaneHits.clear();
226 std::vector<double> dEdxVecErr = {-999, -999, -999};
233 if (bestPlane == -999) {
234 throw cet::exception(
"ShowerUnidirectiondEdx") <<
"No best plane set";
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;
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Vector_t
Type for representation of momenta in 3D space.
The data type to uniquely identify a Plane.
void SetElement(T &dataproduct, const std::string &Name, bool checktag=false)
constexpr auto abs(T v)
Returns the absolute value of the argument.
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")
geo::WireID const & WireID() const
Initial tdc tick for hit.
MaybeLogger_< ELseverityLevel::ELsev_error, false > LogError
View_t View() const
Which coordinate does this plane measure.
TPCID FindTPCAtPosition(Point_t const &point) const
Returns the ID of the TPC at specified location.
Interface for a class providing readout channel mapping to geometry.
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.
PlaneID_t Plane
Index of the plane within its TPC.
int GetElement(const std::string &Name, T &Element) const
float dEdx(detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const TCSlice &slc, TP3D &tp3d)
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.
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
decltype(auto) get(T &&obj)
ADL-aware version of std::to_string.
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
constexpr TPCID const & asTPCID() const
Conversion to PlaneID (for convenience of notation).