CosmicClusterTagger_module.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // Class: CosmicTagger
3 // Module Type: producer
4 // File: CosmicTagger_module.cc
5 //
6 // Generated at Mon Sep 24 18:21:00 2012 by Sarah Lockwitz using artmod
7 // from art v1_02_02.
8 // artmod -e beginJob -e reconfigure -e endJob producer trkf::CosmicTagger
9 ////////////////////////////////////////////////////////////////////////
10 
14 
15 #include <algorithm> // std::minmax() ...
16 #include <memory> // std::unique_ptr<>
17 #include <string>
18 #include <utility> // std::pair<>, std::move()
19 
27 
28 namespace cosmic {
29  class CosmicClusterTagger;
30 }
31 
33 public:
34  explicit CosmicClusterTagger(fhicl::ParameterSet const& p);
35 
36  void produce(art::Event& e) override;
37 
38 private:
44 };
45 
47 {
48  auto const* geo = lar::providerFrom<geo::Geometry>();
49 
50  auto const clock_data = art::ServiceHandle<detinfo::DetectorClocksService const>()->DataForJob();
51  auto const detp =
53  double const samplingRate = sampling_rate(clock_data);
54  fClusterModuleLabel = p.get<std::string>("ClusterModuleLabel", "cluster");
55  fTickLimit = p.get<int>("TickLimit", 0);
56  const double driftVelocity = detp.DriftVelocity(detp.Efield(), detp.Temperature()); // cm/us
57 
59  2 * geo->DetHalfWidth() / (driftVelocity * samplingRate / 1000); // ~3200 for uB
60  fMinTickDrift = p.get("MinTickDrift", 3200);
62 
63  produces<std::vector<anab::CosmicTag>>();
64  produces<art::Assns<recob::Cluster, anab::CosmicTag>>();
65 }
66 
67 void
69 {
70  std::unique_ptr<std::vector<anab::CosmicTag>> cosmicTagClusterVector(
71  new std::vector<anab::CosmicTag>);
72  std::unique_ptr<art::Assns<recob::Cluster, anab::CosmicTag>> assnOutCosmicTagCluster(
74 
76  e.getByLabel(fClusterModuleLabel, Cluster_h);
77  std::vector<art::Ptr<recob::Cluster>> ClusterVec;
78  art::fill_ptr_vector(ClusterVec, Cluster_h);
79 
80  /////////////////////////////////
81  // LOOP OVER CLUSTERS
82  /////////////////////////////////
83 
84  for (unsigned int iCluster = 0; iCluster < Cluster_h->size(); iCluster++) {
85 
86  float cosmicScore = 0;
88 
89  art::Ptr<recob::Cluster> tCluster = ClusterVec.at(iCluster);
90  // art::Ptr<recob::Track> tTrack; // unused
91 
92  std::vector<float> endPt1;
93  std::vector<float> endPt2;
94 
95  // Doing some checks on the cluster to determine if it's a cosmic
96  bool failClusterTickCheck = false;
97 
98  auto const [t0, t1] = std::minmax(tCluster->StartTick(), tCluster->EndTick());
99  if (t0 + fTickLimit < fMinTickDrift) { // This is into the pre-spill window
100  failClusterTickCheck = true;
101  }
102  if (t1 - fTickLimit > fMaxTickDrift) { // This is into the post-spill window
103  failClusterTickCheck = true;
104  }
105 
106  if (failClusterTickCheck) {
107  cosmicScore = 1.;
109  }
110 
111  if (endPt1.size() < 1) {
112  for (int s = 0; s < 3; s++) {
113  endPt1.push_back(-999);
114  endPt2.push_back(-999);
115  }
116  }
117 
118  // Making stuff to save!
119  cosmicTagClusterVector->emplace_back(endPt1, endPt2, cosmicScore, tag_id);
120 
121  util::CreateAssn(e, *cosmicTagClusterVector, tCluster, *assnOutCosmicTagCluster);
122  }
123 
124  /////////////////////////////////
125  // END OF CLUSTER LOOP
126  /////////////////////////////////
127 
128  e.put(std::move(cosmicTagClusterVector));
129  e.put(std::move(assnOutCosmicTagCluster));
130 
131 } // end of produce
132 //////////////////////////////////////////////////////////////////////////////////////////////////////
133 
code to link reconstructed objects back to the MC truth information
void produce(art::Event &e) override
std::pair< float, float > minmax(const float a, const float b)
minmax
std::string string
Definition: nybbler.cc:12
enum anab::cosmic_tag_id CosmicTagID_t
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.h:20
float EndTick() const
Returns the tick coordinate of the end of the cluster.
Definition: Cluster.h:342
art framework interface to geometry description
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
CosmicClusterTagger(fhicl::ParameterSet const &p)
def move(depos, offset)
Definition: depos.py:107
p
Definition: test.py:223
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.
Provides recob::Track data product.
std::vector< gar::rec::Cluster * > ClusterVec
Definition: KNNClusterAlg.h:38
void fill_ptr_vector(std::vector< Ptr< T >> &ptrs, H const &h)
Definition: Ptr.h:297
double sampling_rate(DetectorClocksData const &data)
Returns the period of the TPC readout electronics clock.
LArSoft geometry interface.
Definition: ChannelGeo.h:16
float StartTick() const
Returns the tick coordinate of the start of the cluster.
Definition: Cluster.h:297
static QCString * s
Definition: config.cpp:1042