24 #include "cetlib/search_path.h" 25 #include "cetlib_except/exception.h" 59 std::vector<std::vector<TComplex>>
fKernelS;
79 cet::search_path sp(
"FW_SEARCH_PATH");
80 sp.find_file(pset.get<std::string>(
"ResponseFile"),
fResponseFile);
84 produces<std::vector<recob::Wire>>();
85 produces<art::Assns<raw::RawDigit, recob::Wire>>();
91 MF_LOG_DEBUG(
"CalWire") <<
"CalWire_plugin: Opening Electronics Response File: " 98 TH2D* respRe =
dynamic_cast<TH2D*
>(
f.Get(
"real/RespRe"));
99 TH2D* respIm =
dynamic_cast<TH2D*
>(
f.Get(
"real/RespIm"));
100 TH1D* decayHist =
dynamic_cast<TH1D*
>(
f.Get(
"real/decayHist"));
101 unsigned int wires = decayHist->GetNbinsX();
102 unsigned int bins = respRe->GetYaxis()->GetNbins();
103 unsigned int bin = 0;
104 unsigned int wire = 0;
107 fKernelR.resize(respRe->GetXaxis()->GetNbins());
108 const TArrayD* edges = respRe->GetXaxis()->GetXbins();
109 for (
int i = 0; i < respRe->GetXaxis()->GetNbins(); ++i) {
111 for (bin = 0; bin < bins; ++
bin) {
112 const TComplex a(respRe->GetBinContent(i + 1, bin + 1),
113 respIm->GetBinContent(i + 1, bin + 1));
116 for (; wire < (*edges)[i + 1]; ++wire) {
121 respRe =
dynamic_cast<TH2D*
>(
f.Get(
"sim/RespRe"));
122 respIm =
dynamic_cast<TH2D*
>(
f.Get(
"sim/RespIm"));
123 decayHist =
dynamic_cast<TH1D*
>(
f.Get(
"sim/decayHist"));
124 wires = decayHist->GetNbinsX();
125 bins = respRe->GetYaxis()->GetNbins();
128 fKernelS.resize(respRe->GetXaxis()->GetNbins());
129 const TArrayD* edges1 = respRe->GetXaxis()->GetXbins();
131 for (
int i = 0; i < respRe->GetXaxis()->GetNbins(); ++i) {
133 for (bin = 0; bin < bins; ++
bin) {
134 const TComplex b(respRe->GetBinContent(i + 1, bin + 1),
135 respIm->GetBinContent(i + 1, bin + 1));
138 for (; wire < (*edges1)[i + 1]; ++wire) {
152 std::vector<double> decayConsts;
153 std::vector<int> kernMap;
154 std::vector<std::vector<TComplex>> kernel;
171 std::unique_ptr<std::vector<recob::Wire>> wirecol(
new std::vector<recob::Wire>);
173 std::unique_ptr<art::Assns<raw::RawDigit, recob::Wire>> WireDigitAssn(
180 if (!digitVecHandle->size())
return;
181 mf::LogInfo(
"CalWire") <<
"CalWire:: digitVecHandle size is " << digitVecHandle->size();
186 unsigned int dataSize = digitVec0->
Samples();
188 int transformSize = fFFT->
FFTSize();
192 double decayConst = 0.;
193 double fitAmplitude = 0.;
194 std::vector<float> holder;
195 std::vector<short> rawadc(transformSize);
196 std::vector<TComplex> freqHolder(transformSize + 1);
199 for (
unsigned int rdIter = 0; rdIter < digitVecHandle->size(); ++rdIter) {
205 holder.resize(transformSize);
210 for (bin = 0; bin < dataSize; ++
bin)
211 holder[bin] = (rawadc[bin] - digitVec->
GetPedestal());
217 TF1 expFit(
"expFit",
"[0]*exp([1]*x)");
221 decayConst = decayConsts[channel];
223 expFit.FixParameter(1, decayConst);
224 expFit.SetParameter(0, fitAmplitude);
225 expTailData.Fit(&expFit,
"QWN",
"", dataSize -
fExpEndBins, dataSize);
226 expFit.SetRange(dataSize, transformSize);
227 for (bin = 0; bin < dataSize; ++
bin)
228 holder[dataSize + bin] = expFit.Eval(bin + dataSize);
245 throw cet::exception(
"CalWire") <<
"Bad signal type = " << sigtype <<
"\n";
246 if (k >= kernel.size())
throw cet::exception(
"CalWire") <<
"kernel size < " << k <<
"!\n";
250 holder.resize(dataSize, 1
e-5);
253 double average = 0.0;
256 for (bin = 0; bin < holder.size(); ++
bin)
257 holder[bin] -= average;
264 <<
"Can't associate wire #" << (wirecol->size() - 1) <<
" with raw digit #" 269 if (wirecol->empty())
mf::LogWarning(
"CalWire") <<
"No wires made for this event.";
271 evt.
put(std::move(wirecol));
272 evt.
put(std::move(WireDigitAssn));
float GetPedestal() const
const ADCvector_t & ADCs() const
Reference to the compressed ADC count vector.
ULong64_t Samples() const
Number of samples in the uncompressed ADC data.
std::string fResponseFile
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
std::vector< int > fKernMapR
Helper functions to create a wire.
EDProducer(fhicl::ParameterSet const &pset)
ChannelID_t Channel() const
DAQ channel this raw data was read from.
constexpr auto abs(T v)
Returns the absolute value of the argument.
std::vector< double > fDecayConstsR
Definition of basic raw digits.
SigType_t SignalType(PlaneID const &pid) const
Returns the type of signal on the channels of specified TPC plane.
Class managing the creation of a new recob::Wire object.
creation of calibrated signals on wires
void produce(art::Event &evt) override
WireReadoutGeom const & Get() const
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
std::vector< double > fDecayConstsS
constexpr ChannelID_t InvalidChannelID
ID of an invalid channel.
#define DEFINE_ART_MODULE(klass)
Signal from induction planes.
enum geo::_plane_sigtype SigType_t
Enumerate the possible plane projections.
Collect all the RawData header files together.
key_type key() const noexcept
void Convolute(std::vector< T > &input, std::vector< T > &respFunc)
std::vector< std::vector< TComplex > > fKernelR
raw::Compress_t Compression() const
Compression algorithm used to store the ADC counts.
bool CreateAssn(art::Event &evt, std::vector< T > const &a, art::Ptr< U > const &b, art::Assns< U, T > &assn, std::string a_instance, size_t index=UINT_MAX)
Creates a single one-to-one association.
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
bool getByLabel(std::string const &label, std::string const &instance, Handle< PROD > &result) const
Utility object to perform functions of association.
std::string fDigitModuleLabel
module that made digits
std::vector< std::vector< TComplex > > fKernelS
int fExpEndBins
number of end bins to consider for tail fit
Declaration of basic channel signal object.
int fPostsample
number of postsample bins
std::vector< int > fKernMapS
unsigned int ChannelID_t
Type representing the ID of a readout channel.
void Uncompress(const std::vector< short > &adc, std::vector< short > &uncompressed, raw::Compress_t compress)
Uncompresses a raw data buffer.
CalWire(fhicl::ParameterSet const &pset)
cet::coded_exception< error, detail::translate > exception
Signal from collection planes.