Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
#include "ShallowSimhitClustersProducer.h"

#include "CalibTracker/SiStripCommon/interface/ShallowTools.h"
#include "DataFormats/SiStripCluster/interface/SiStripCluster.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "Geometry/CommonTopologies/interface/StripTopology.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"

ShallowSimhitClustersProducer::ShallowSimhitClustersProducer(const edm::ParameterSet& iConfig)
    : clusters_token_(consumes<edmNew::DetSetVector<SiStripCluster>>(iConfig.getParameter<edm::InputTag>("Clusters"))),
      geomToken_(esConsumes<TrackerGeometry, TrackerDigiGeometryRecord>()),
      magFieldToken_(esConsumes<MagneticField, IdealMagneticFieldRecord>()),
      laToken_(esConsumes<SiStripLorentzAngle, SiStripLorentzAngleRcd>(
          edm::ESInputTag{"", iConfig.getParameter<std::string>("runningMode")})),
      Prefix(iConfig.getParameter<std::string>("Prefix")),
      runningmode_(iConfig.getParameter<std::string>("runningMode")) {
  std::vector<edm::InputTag> simhits_tags = iConfig.getParameter<std::vector<edm::InputTag>>("InputTags");
  for (const auto& itag : simhits_tags) {
    simhits_tokens_.push_back(consumes<std::vector<PSimHit>>(itag));
  }

  produces<std::vector<unsigned>>(Prefix + "hits");
  produces<std::vector<float>>(Prefix + "strip");
  produces<std::vector<float>>(Prefix + "localtheta");
  produces<std::vector<float>>(Prefix + "localphi");
  produces<std::vector<float>>(Prefix + "localx");
  produces<std::vector<float>>(Prefix + "localy");
  produces<std::vector<float>>(Prefix + "localz");
  produces<std::vector<float>>(Prefix + "momentum");
  produces<std::vector<float>>(Prefix + "energyloss");
  produces<std::vector<float>>(Prefix + "time");
  produces<std::vector<int>>(Prefix + "particle");
  produces<std::vector<unsigned short>>(Prefix + "process");
}

void ShallowSimhitClustersProducer::produce(edm::Event& iEvent, const edm::EventSetup& iSetup) {
  shallow::CLUSTERMAP clustermap = shallow::make_cluster_map(iEvent, clusters_token_);

  int size = clustermap.size();
  auto hits = std::make_unique<std::vector<unsigned>>(size, 0);
  auto strip = std::make_unique<std::vector<float>>(size, -100);
  auto localtheta = std::make_unique<std::vector<float>>(size, -100);
  auto localphi = std::make_unique<std::vector<float>>(size, -100);
  auto localx = std::make_unique<std::vector<float>>(size, -100);
  auto localy = std::make_unique<std::vector<float>>(size, -100);
  auto localz = std::make_unique<std::vector<float>>(size, -100);
  auto momentum = std::make_unique<std::vector<float>>(size, 0);
  auto energyloss = std::make_unique<std::vector<float>>(size, -1);
  auto time = std::make_unique<std::vector<float>>(size, -1);
  auto particle = std::make_unique<std::vector<int>>(size, -500);
  auto process = std::make_unique<std::vector<unsigned short>>(size, 0);

  edm::ESHandle<TrackerGeometry> theTrackerGeometry = iSetup.getHandle(geomToken_);
  edm::ESHandle<MagneticField> magfield = iSetup.getHandle(magFieldToken_);
  edm::ESHandle<SiStripLorentzAngle> SiStripLorentzAngle = iSetup.getHandle(laToken_);
  edm::Handle<edmNew::DetSetVector<SiStripCluster>> clusters;
  iEvent.getByLabel("siStripClusters", "", clusters);

  for (auto& simhit_token : simhits_tokens_) {
    edm::Handle<std::vector<PSimHit>> simhits;
    iEvent.getByToken(simhit_token, simhits);
    for (auto const& hit : *simhits) {
      const uint32_t id = hit.detUnitId();
      const StripGeomDetUnit* theStripDet = dynamic_cast<const StripGeomDetUnit*>(theTrackerGeometry->idToDet(id));
      const LocalVector drift = shallow::drift(theStripDet, *magfield, *SiStripLorentzAngle);

      const float driftedstrip_ = theStripDet->specificTopology().strip(hit.localPosition() + 0.5 * drift);
      const float hitstrip_ = theStripDet->specificTopology().strip(hit.localPosition());

      shallow::CLUSTERMAP::const_iterator cluster = match_cluster(id, driftedstrip_, clustermap, *clusters);
      if (cluster != clustermap.end()) {
        unsigned i = cluster->second;
        hits->at(i) += 1;
        if (hits->at(i) == 1) {
          strip->at(i) = hitstrip_;
          localtheta->at(i) = hit.thetaAtEntry();
          localphi->at(i) = hit.phiAtEntry();
          localx->at(i) = hit.localPosition().x();
          localy->at(i) = hit.localPosition().y();
          localz->at(i) = hit.localPosition().z();
          momentum->at(i) = hit.pabs();
          energyloss->at(i) = hit.energyLoss();
          time->at(i) = hit.timeOfFlight();
          particle->at(i) = hit.particleType();
          process->at(i) = hit.processType();
        }
      }
    }
  }

  iEvent.put(std::move(hits), Prefix + "hits");
  iEvent.put(std::move(strip), Prefix + "strip");
  iEvent.put(std::move(localtheta), Prefix + "localtheta");
  iEvent.put(std::move(localphi), Prefix + "localphi");
  iEvent.put(std::move(localx), Prefix + "localx");
  iEvent.put(std::move(localy), Prefix + "localy");
  iEvent.put(std::move(localz), Prefix + "localz");
  iEvent.put(std::move(momentum), Prefix + "momentum");
  iEvent.put(std::move(energyloss), Prefix + "energyloss");
  iEvent.put(std::move(time), Prefix + "time");
  iEvent.put(std::move(particle), Prefix + "particle");
  iEvent.put(std::move(process), Prefix + "process");
}

shallow::CLUSTERMAP::const_iterator ShallowSimhitClustersProducer::match_cluster(
    const unsigned& id,
    const float& strip_,
    const shallow::CLUSTERMAP& clustermap,
    const edmNew::DetSetVector<SiStripCluster>& clusters) const {
  shallow::CLUSTERMAP::const_iterator cluster = clustermap.end();
  edmNew::DetSetVector<SiStripCluster>::const_iterator clustersDetSet = clusters.find(id);
  if (clustersDetSet != clusters.end()) {
    edmNew::DetSet<SiStripCluster>::const_iterator left, right = clustersDetSet->begin();
    while (right != clustersDetSet->end() && strip_ > right->barycenter())
      right++;
    left = right - 1;
    if (right != clustersDetSet->end() && right != clustersDetSet->begin()) {
      unsigned firstStrip =
          (right->barycenter() - strip_) < (strip_ - left->barycenter()) ? right->firstStrip() : left->firstStrip();
      cluster = clustermap.find(std::make_pair(id, firstStrip));
    } else if (right != clustersDetSet->begin())
      cluster = clustermap.find(std::make_pair(id, left->firstStrip()));
    else
      cluster = clustermap.find(std::make_pair(id, right->firstStrip()));
  }
  return cluster;
}