testCaloGeometryTools

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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
// -*- C++ -*-
//
// Package:    testCaloCaloGeometryTools
// Class:      testCaloCaloGeometryTools
//
/**\class testCaloCaloGeometryTools testCaloGeometryTools.cc test/testCaloGeometryTools/src/testCaloGeometryTools.cc

 Description: <one line class summary>

 Implementation:
     <Notes on implementation>
*/
//

// system include files
#include <memory>

// user include files
#include "FWCore/Framework/interface/stream/EDAnalyzer.h"

#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/MakerMacros.h"

#include "Geometry/Records/interface/CaloGeometryRecord.h"
#include "Geometry/Records/interface/CaloTopologyRecord.h"
#include "Geometry/CaloGeometry/interface/CaloSubdetectorGeometry.h"
#include "Geometry/CaloGeometry/interface/CaloGeometry.h"
#include "Geometry/CaloGeometry/interface/CaloCellGeometry.h"
#include "Geometry/EcalAlgo/interface/EcalBarrelGeometry.h"
#include "Geometry/EcalAlgo/interface/EcalEndcapGeometry.h"

#include "DataFormats/EcalDetId/interface/EBDetId.h"
#include "DataFormats/EcalDetId/interface/EEDetId.h"

#include "FastSimulation/CaloGeometryTools/interface/CaloGeometryHelper.h"
#include "FastSimulation/CaloHitMakers/interface/EcalHitMaker.h"
#include "FastSimulation/CaloGeometryTools/interface/Crystal.h"
#include "FastSimulation/Utilities/interface/Histos.h"
#include "FastSimulation/Utilities/interface/RandomEngineAndDistribution.h"

#include <TH3F.h>
#include <TPolyLine3D.h>
#include <TMarker.h>
#include <iostream>
#include <sstream>
//
// class decleration
//

typedef math::XYZVector XYZVector;
typedef math::XYZVector XYZPoint;

class testCaloGeometryTools : public edm::stream::EDAnalyzer<> {
public:
  explicit testCaloGeometryTools(const edm::ParameterSet&);
  ~testCaloGeometryTools();

  virtual void analyze(const edm::Event&, const edm::EventSetup&);

private:
  // ----------member data ---------------------------
  void testpoint(const XYZPoint&, std::string name, bool barrel, RandomEngineAndDistribution const*);
  void checkSM();
  void checkSC();
  void testBorderCrossing();

  const edm::ESGetToken<CaloTopology, CaloTopologyRecord> tokCaloTopo_;
  const edm::ESGetToken<CaloGeometry, CaloGeometryRecord> tokCaloGeom_;

  Histos* myHistos;
  CaloGeometryHelper myGeometry;
};

//
// constants, enums and typedefs
//

//
// static data member definitions
//

//
// constructors and destructor
//
testCaloGeometryTools::testCaloGeometryTools(const edm::ParameterSet& iConfig)
    : tokCaloTopo_(esConsumes()), tokCaloGeom_(esConsumes()) {
  myHistos = Histos::instance();
  myHistos->book("h100", 150, 0., 1.5, 100, 0., 35.);
}

testCaloGeometryTools::~testCaloGeometryTools() {
  // do anything here that needs to be done at desctruction time
  // (e.g. close files, deallocate resources etc.)
  std::cout << " Writing the histo " << std::endl;
  myHistos->put("Grid.root");
  std::cout << " done " << std::endl;
}

// ------------ method called to produce the data  ------------
void testCaloGeometryTools::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
  using namespace edm;

  RandomEngineAndDistribution random(iEvent.streamID());

  const edm::ESHandle<CaloTopology>& theCaloTopology = iSetup.getHandle(tokCaloTopo_);
  const edm::ESHandle<CaloGeometry>& pG = iSetup.getHandle(tokCaloGeom_);

  // Setup the tools
  double bField000 = 4.;
  myGeometry.setupGeometry(*(pG.product()));
  myGeometry.setupTopology(*(theCaloTopology.product()));
  myGeometry.initialize(bField000);

  // Take a point in the barrel
  XYZPoint p1(129, 0., -50);
  testpoint(p1, "barrel", true, &random);
  XYZPoint p2(60, 60, -317);
  testpoint(p1, "endcap", false, &random);

  checkSM();
  checkSC();
  testBorderCrossing();
}

void testCaloGeometryTools::checkSM() {
  const std::vector<DetId>& vec(myGeometry.getEcalBarrelGeometry()->getValidDetIds(DetId::Ecal, EcalBarrel));
  unsigned size = vec.size();
  for (unsigned ic = 0; ic < size; ++ic) {
    auto geom = (myGeometry.getEcalBarrelGeometry())->getGeometry(vec[ic]);
    GlobalPoint p = geom->getPosition();
    XYZPoint pp(p.x(), p.y(), p.z());
    // Build the name of the object
    std::ostringstream oss, oss2;
    oss << "iM" << ic;
    oss2 << "iSM" << ic;
    TMarker* myMarker = new TMarker(pp.eta(), pp.phi(), 1);
    myMarker->SetMarkerColor(EBDetId(vec[ic]).im());
    TMarker* myMarker2 = new TMarker(pp.eta(), pp.phi(), 1);
    myMarker2->SetMarkerColor(EBDetId(vec[ic]).ism());
    myHistos->addObject(oss.str(), myMarker);
    myHistos->addObject(oss2.str(), myMarker2);
  }
}

void testCaloGeometryTools::checkSC() {
  const std::vector<DetId>& vec(myGeometry.getEcalEndcapGeometry()->getValidDetIds(DetId::Ecal, EcalEndcap));
  unsigned size = vec.size();
  for (unsigned ic = 0; ic < size; ++ic) {
    auto geom = (myGeometry.getEcalEndcapGeometry())->getGeometry(vec[ic]);
    GlobalPoint p = geom->getPosition();
    XYZPoint pp(p.x(), p.y(), p.z());
    // Build the name of the object
    std::ostringstream oss, oss2;
    if (p.z() > 0)
      oss << "iSCP" << ic;
    else
      oss << "iSCN" << ic;
    TMarker* myMarker = new TMarker(pp.x(), pp.y(), 1);
    if (pp.perp2() < 100.)
      std::cout << EEDetId(vec[ic]) << " " << pp.x() << " " << pp.y() << std::endl;
    myMarker->SetMarkerColor(EEDetId(vec[ic]).isc() % 100);
    myMarker->SetMarkerStyle(22);
    myHistos->addObject(oss.str(), myMarker);
  }
}

void testCaloGeometryTools::testpoint(const XYZPoint& point,
                                      std::string name,
                                      bool barrel,
                                      RandomEngineAndDistribution const* random) {
  DetId myCell = myGeometry.getClosestCell(point, true, barrel);
  EcalHitMaker myGrid(&myGeometry, point, myCell, 1, 7, 0, random);

  std::vector<Crystal> myCrystals = myGrid.getCrystals();

  float xmin, ymin, zmin, xmax, ymax, zmax;
  xmin = ymin = zmin = 99999;
  xmax = ymax = zmax = -9999;
  unsigned nxtal = myCrystals.size();

  std::vector<float> xp, yp, zp;

  for (unsigned ic = 0; ic < nxtal; ++ic) {
    XYZPoint p = myCrystals[ic].getCenter();

    myCrystals[ic].getDrawingCoordinates(xp, yp, zp);
    TPolyLine3D* myxtal = new TPolyLine3D(xp.size(), &xp[0], &yp[0], &zp[0]);

    // Build the name of the object
    std::ostringstream oss;
    oss << name << ic;

    myHistos->addObject(oss.str(), myxtal);

    if (xmin > p.x())
      xmin = p.x();
    if (ymin > p.y())
      ymin = p.y();
    if (zmin > p.z())
      zmin = p.z();
    if (xmax < p.x())
      xmax = p.x();
    if (ymax < p.y())
      ymax = p.y();
    if (zmax < p.z())
      zmax = p.z();
  }
  TH3F* frame = new TH3F(std::string(name + "frame").c_str(),
                         "",
                         100,
                         xmin * 0.9,
                         xmax * 1.1,
                         100,
                         ymin * 0.9,
                         ymax * 1.1,
                         100,
                         zmin * 0.9,
                         zmax * 1.1);
  myHistos->addObject("frame" + name, frame);
}

void testCaloGeometryTools::testBorderCrossing() {
  // Barrel
  const std::vector<DetId>& vec(myGeometry.getEcalBarrelGeometry()->getValidDetIds(DetId::Ecal, EcalBarrel));
  unsigned size = vec.size();
  unsigned counter = 0;
  for (unsigned ic = 0; ic < size; ++ic) {
    CaloGeometryHelper::NeiVect neighbours = myGeometry.getNeighbours(vec[ic]);
    for (unsigned in = 0; in < 8; ++in) {
      if (neighbours[in].null())
        continue;
      if (myGeometry.borderCrossing(vec[ic], neighbours[in])) {
        auto geom = (myGeometry.getEcalBarrelGeometry())->getGeometry(vec[ic]);
        GlobalPoint p1 = geom->getPosition();
        XYZPoint pp1(p1.x(), p1.y(), p1.z());
        geom = (myGeometry.getEcalBarrelGeometry())->getGeometry(neighbours[in]);
        GlobalPoint p2 = geom->getPosition();
        XYZPoint pp2(p2.x(), p2.y(), p2.z());
        TMarker* myMarker = new TMarker((pp1 + pp2).eta() * 0.5, ((pp1 + pp2) * 0.5).phi(), 22);
        std::ostringstream oss;
        oss << "iBCB" << counter;
        myHistos->addObject(oss.str(), myMarker);
        ++counter;
      }
    }
  }

  // Endcap
  const std::vector<DetId>& vec2(myGeometry.getEcalEndcapGeometry()->getValidDetIds(DetId::Ecal, EcalEndcap));
  size = vec2.size();
  counter = 0;
  for (unsigned ic = 0; ic < size; ++ic) {
    CaloGeometryHelper::NeiVect neighbours = myGeometry.getNeighbours(vec2[ic]);
    for (unsigned in = 0; in < 8; ++in) {
      if (neighbours[in].null())
        continue;
      if (myGeometry.borderCrossing(vec2[ic], neighbours[in])) {
        auto geom = (myGeometry.getEcalEndcapGeometry())->getGeometry(vec2[ic]);
        GlobalPoint p1 = geom->getPosition();
        XYZPoint pp1(p1.x(), p1.y(), p1.z());
        geom = (myGeometry.getEcalEndcapGeometry())->getGeometry(neighbours[in]);
        GlobalPoint p2 = geom->getPosition();
        XYZPoint pp2(p2.x(), p2.y(), p2.z());
        TMarker* myMarker = new TMarker((pp1 + pp2).x() * 0.5, (pp1 + pp2).y() * 0.5, 22);
        std::ostringstream oss;
        if (p1.z() > 0)
          oss << "iBCEN" << counter;
        else
          oss << "iBCEP" << counter;

        myHistos->addObject(oss.str(), myMarker);
        ++counter;
      }
    }
  }
}

//define this as a plug-in

DEFINE_FWK_MODULE(testCaloGeometryTools);