All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Member Functions | Private Attributes | List of all members
cluster::DBcluster Class Reference
Inheritance diagram for cluster::DBcluster:

Public Member Functions

 DBcluster (fhicl::ParameterSet const &pset)
 

Private Member Functions

void produce (art::Event &evt)
 
void beginJob ()
 

Private Attributes

TH1F * fhitwidth
 
TH1F * fhitwidth_ind_test
 
TH1F * fhitwidth_coll_test
 
std::string fhitsModuleLabel
 
DBScanAlg fDBScan
 object that implements the DB scan algorithm More...
 

Detailed Description

Definition at line 43 of file DBcluster_module.cc.

Constructor & Destructor Documentation

cluster::DBcluster::DBcluster ( fhicl::ParameterSet const &  pset)
explicit

Definition at line 65 of file DBcluster_module.cc.

66  : EDProducer{pset}, fDBScan(pset.get<fhicl::ParameterSet>("DBScanAlg"))
67  {
68  fhitsModuleLabel = pset.get<std::string>("HitsModuleLabel");
69 
70  produces<std::vector<recob::Cluster>>();
71  produces<art::Assns<recob::Cluster, recob::Hit>>();
72  }
DBScanAlg fDBScan
object that implements the DB scan algorithm
std::string fhitsModuleLabel

Member Function Documentation

void cluster::DBcluster::beginJob ( )
private

Definition at line 76 of file DBcluster_module.cc.

77  {
78  // get access to the TFile service
79  art::ServiceHandle<art::TFileService const> tfs;
80 
81  fhitwidth = tfs->make<TH1F>(" fhitwidth", "width of hits in cm", 50000, 0, 5);
82  fhitwidth_ind_test = tfs->make<TH1F>("fhitwidth_ind_test", "width of hits in cm", 50000, 0, 5);
84  tfs->make<TH1F>("fhitwidth_coll_test", "width of hits in cm", 50000, 0, 5);
85  }
art::ServiceHandle< art::TFileService > tfs
void cluster::DBcluster::produce ( art::Event &  evt)
private
Todo:
: need to define start and end positions for this cluster and slopes for dTdW, dQdW

Definition at line 89 of file DBcluster_module.cc.

90  {
91 
92  //get a collection of clusters
93  std::unique_ptr<std::vector<recob::Cluster>> ccol(new std::vector<recob::Cluster>);
94  std::unique_ptr<art::Assns<recob::Cluster, recob::Hit>> assn(
95  new art::Assns<recob::Cluster, recob::Hit>);
96 
97  // prepare the algorithm to compute the cluster characteristics;
98  // we use the "standard" one here; configuration would happen here,
99  // but we are using the default configuration for that algorithm
100  ClusterParamsImportWrapper<StandardClusterParamsAlg> ClusterParamAlgo;
101 
102  art::ServiceHandle<geo::Geometry const> geom;
103 
104  art::Handle<std::vector<recob::Hit>> hitcol;
105  evt.getByLabel(fhitsModuleLabel, hitcol);
106 
107  // loop over all hits in the event and look for clusters (for each plane)
108  std::vector<art::Ptr<recob::Hit>> allhits;
109 
110  // get channel quality service:
111  lariov::ChannelStatusProvider const& channelStatus =
112  art::ServiceHandle<lariov::ChannelStatusService const>()->GetProvider();
113 
114  lariov::ChannelStatusProvider::ChannelSet_t const BadChannels = channelStatus.BadChannels();
115 
116  // make a map of the geo::PlaneID to vectors of art::Ptr<recob::Hit>
117  std::map<geo::PlaneID, std::vector<art::Ptr<recob::Hit>>> planeIDToHits;
118  for (size_t i = 0; i < hitcol->size(); ++i)
119  planeIDToHits[hitcol->at(i).WireID().planeID()].push_back(art::Ptr<recob::Hit>(hitcol, i));
120 
121  auto const clock_data =
122  art::ServiceHandle<detinfo::DetectorClocksService const>()->DataFor(evt);
123  auto const det_prop =
124  art::ServiceHandle<detinfo::DetectorPropertiesService const>()->DataFor(evt, clock_data);
125  util::GeometryUtilities const gser{*geom, clock_data, det_prop};
126  for (auto& itr : planeIDToHits) {
127 
128  geo::SigType_t sigType = geom->SignalType(itr.first);
129  allhits.resize(itr.second.size());
130  allhits.swap(itr.second);
131 
132  fDBScan.InitScan(clock_data, det_prop, allhits, BadChannels);
133 
134  //----------------------------------------------------------------
135  for (unsigned int j = 0; j < fDBScan.fps.size(); ++j) {
136 
137  if (allhits.size() != fDBScan.fps.size()) break;
138 
139  fhitwidth->Fill(fDBScan.fps[j][2]);
140 
141  if (sigType == geo::kInduction) fhitwidth_ind_test->Fill(fDBScan.fps[j][2]);
142  if (sigType == geo::kCollection) fhitwidth_coll_test->Fill(fDBScan.fps[j][2]);
143  }
144 
145  //*******************************************************************
147 
148  for (size_t i = 0; i < fDBScan.fclusters.size(); ++i) {
149  art::PtrVector<recob::Hit> clusterHits;
150  double totalQ = 0.;
151 
152  for (size_t j = 0; j < fDBScan.fpointId_to_clusterId.size(); ++j) {
153  if (fDBScan.fpointId_to_clusterId[j] == i) {
154  clusterHits.push_back(allhits[j]);
155  totalQ += clusterHits.back()->Integral();
156  }
157  }
158 
159  if (clusterHits.empty()) continue;
160 
161  /// \todo: need to define start and end positions for this cluster and slopes for dTdW, dQdW
162  const geo::WireID& wireID = clusterHits.front()->WireID();
163  unsigned int sw = wireID.Wire;
164  unsigned int ew = clusterHits.back()->WireID().Wire;
165 
166  // feed the algorithm with all the cluster hits
167  ClusterParamAlgo.ImportHits(gser, clusterHits);
168 
169  // create the recob::Cluster directly in the vector
170  ClusterCreator cluster(gser,
171  ClusterParamAlgo, // algo
172  float(sw), // start_wire
173  0., // sigma_start_wire
174  clusterHits.front()->PeakTime(), // start_tick
175  clusterHits.front()->SigmaPeakTime(), // sigma_start_tick
176  float(ew), // end_wire
177  0., // sigma_end_wire,
178  clusterHits.back()->PeakTime(), // end_tick
179  clusterHits.back()->SigmaPeakTime(), // sigma_end_tick
180  ccol->size(), // ID
181  clusterHits.front()->View(), // view
182  wireID.planeID(), // plane
183  recob::Cluster::Sentry // sentry
184  );
185 
186  ccol->emplace_back(cluster.move());
187 
188  // associate the hits to this cluster
189  util::CreateAssn(evt, *ccol, clusterHits, *assn);
190 
191  } //end loop over fclusters
192 
193  allhits.clear();
194  } // end loop over PlaneID map
195 
196  mf::LogVerbatim("Summary") << std::setfill('-') << std::setw(175) << "-" << std::setfill(' ');
197  mf::LogVerbatim("Summary") << "DBcluster Summary:";
198  for (unsigned int i = 0; i < ccol->size(); ++i)
199  mf::LogVerbatim("Summary") << ccol->at(i);
200 
201  evt.put(std::move(ccol));
202  evt.put(std::move(assn));
203 
204  return;
205  }
std::set< raw::ChannelID_t > ChannelSet_t
Type of set of channel IDs.
process_name cluster
Definition: cheaterreco.fcl:51
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:580
std::vector< std::vector< double > > fps
the collection of points we are working on
Definition: DBScanAlg.h:72
virtual ChannelSet_t BadChannels() const =0
Returns a copy of set of bad channel IDs for the current run.
static const SentryArgument_t Sentry
An instance of the sentry object.
Definition: Cluster.h:182
DBScanAlg fDBScan
object that implements the DB scan algorithm
std::vector< unsigned int > fpointId_to_clusterId
mapping point_id -&gt; clusterId
Definition: DBScanAlg.h:73
Signal from induction planes.
Definition: geo_types.h:145
enum geo::_plane_sigtype SigType_t
Class providing information about the quality of channels.
std::string fhitsModuleLabel
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.
void InitScan(const detinfo::DetectorClocksData &clockData, const detinfo::DetectorPropertiesData &detProp, const std::vector< art::Ptr< recob::Hit >> &allhits, std::set< uint32_t > badChannels, const std::vector< geo::WireID > &wireids=std::vector< geo::WireID >())
Definition: DBScanAlg.cxx:272
std::vector< std::vector< unsigned int > > fclusters
collection of something
Definition: DBScanAlg.h:71
constexpr WireID()=default
Default constructor: an invalid TPC ID.
constexpr PlaneID const & planeID() const
Definition: geo_types.h:638
TCEvent evt
Definition: DataStructs.cxx:8
Signal from collection planes.
Definition: geo_types.h:146

Member Data Documentation

DBScanAlg cluster::DBcluster::fDBScan
private

object that implements the DB scan algorithm

Definition at line 57 of file DBcluster_module.cc.

std::string cluster::DBcluster::fhitsModuleLabel
private

Definition at line 55 of file DBcluster_module.cc.

TH1F* cluster::DBcluster::fhitwidth
private

Definition at line 51 of file DBcluster_module.cc.

TH1F* cluster::DBcluster::fhitwidth_coll_test
private

Definition at line 53 of file DBcluster_module.cc.

TH1F* cluster::DBcluster::fhitwidth_ind_test
private

Definition at line 52 of file DBcluster_module.cc.


The documentation for this class was generated from the following file: