EEDetId

Macros

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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
#ifndef ECALDETID_EEDETID_H
#define ECALDETID_EEDETID_H

#include <iosfwd>
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/EcalDetId/interface/EcalScDetId.h"
#include "DataFormats/EcalDetId/interface/EcalSubdetector.h"

/** \class EEDetId
 *  Crystal/cell identifier class for the ECAL endcap
 *
 *
 */
class EEDetId : public DetId {
public:
  enum {
    /** Sudetector type. Here it is ECAL endcap.
     */
    Subdet = EcalEndcap
  };

  /** Constructor of a null id
   */
  EEDetId() {}

  /** Constructor from a raw value
   * @param rawid det ID number
   */
  EEDetId(uint32_t rawid) : DetId(rawid) {}

  /** Constructor from crystal ix,iy,iz (iz=+1/-1) (mode = XYMODE)
   * or from sc,cr,iz (mode = SCCRYSTALMODE).
   * <p>ix runs from 1 to 100 along x-axis of standard CMS coordinates<br>
   * iy runs from 1 to 100 along y-axis of standard CMS coordinates<br>
   * iz is -1 for EE- and +1 for EE+<br>
   * <p>For isc see isc(), for ic see ic()
   * @see isc(), ic()
   * @param i ix or isc index
   * @param j iy or isc index
   * @param iz iz/zside index: -1 for EE-, +1 for EE+
   * @param mode pass XYMODE if i j refer to ix, iy, SCCRYSTALMODE if thery refer to isc, ic
   */
  // fast
  EEDetId(int crystal_ix, int crystal_iy, int iz) : DetId(Ecal, EcalEndcap) {
    id_ |= (crystal_iy & 0x7f) | ((crystal_ix & 0x7f) << 7) | ((iz > 0) ? (0x4000) : (0));
  }
  // slow
  EEDetId(int i, int j, int iz, int mode);

  /** Constructor from a generic cell id
   * @param id source detid
   */
  EEDetId(const DetId& id) : DetId(id) {}

  /** Assignment operator
   * @param id source det id
   */
  EEDetId& operator=(const DetId& id) {
    id_ = id.rawId();
    return *this;
  }

  /** Gets the subdetector
   * @return subdetectot ID, that is EcalEndcap
   */
  static EcalSubdetector subdet() { return EcalEndcap; }

  /** Gets the z-side of the crystal (1/-1)
   * @return -1 for EE-, +1 for EE+
   */
  int zside() const { return (id_ & 0x4000) ? (1) : (-1); }

  /** Gets the crystal x-index.
   * @see EEDetId(int, int, int, int) for x-index definition
   * @return x-index
   */
  int ix() const { return (id_ >> 7) & 0x7F; }

  /** Get the crystal y-index
   * @see EEDetId(int, int, int, int) for y-index definition.
   * @return y-index
   */
  int iy() const { return id_ & 0x7F; }

  /** Gets the DetId of the supercrystal the crystal belong to.
   * @return the supercrystal det id
   * @throw cms::Exception if the crystal det id is invalid 
   */
  EcalScDetId sc() const {
    const int scEdge = 5;
    return EcalScDetId(1 + (ix() - 1) / scEdge, 1 + (iy() - 1) / scEdge, zside());
  }

  /** Gets the SuperCrystal number within the endcap. This number runs from 1 to 316,
   * numbers 70 149 228 307 are not used.
   *
   * BEWARE: This number is not consistent with indices used in constructor:  see details below.
   *
   * Numbering in quadrant 1 of EE+ is the following
   * \verbatim 
   *  08 17 27        
   *  07 16 26 36 45 54     
   *  06 15 25 35 44 53 62    
   *  05 14 24 34 43 52 61 69   
   *  04 13 23 33 42 51 60 68 76  
   *  03 12 22 32 41 50 59 67 75  
   *  02 11 21 31 40 49 58 66 74  
   *  01 10 20 30 39 48 57 65 73 79 
   *     09 19 29 38 47 56 64 72 78 
   *        18 28 37 46 55 63 71 77
   *  
   *        == THERE IS NO INDEX 70! ==
   * \endverbatim
   *
   * Quadrant 2 indices are deduced by a symetry about y-axis and by adding an offset
   * of 79.<br>
   * Quadrant 3 and 4 indices are deduced from quadrant 1 and 2 by a symetry
   * about x-axis and adding an offset. Quadrant N starts with index 1 + (N-1)*79.
   *
   * <p>EE- indices are deduced from EE+ by a symetry about (x,y)-plane (mirrored view). <b>It is
   * inconsistent with indices used in constructor EEDetId(int, int,int) in
   * SCCRYSTALMODE</b>. Indices of constructor uses a symetry along y-axis: in principal it
   * considers the isc as a local index. The discrepancy is most probably due to a bug in the
   * implementation of this isc() method.
   */
  int isc() const;

  /** Gets crystal number inside SuperCrystal.
   * Crystal numbering withing a supercrystal in each quadrant:
   * \verbatim
   *                       A y
   *  (Q2)                 |                    (Q1)
   *       25 20 15 10 5   |     5 10 15 20 25
   *       24 19 14  9 4   |     4  9 14 19 24
   *       23 18 13  8 3   |     3  8 13 18 23
   *       22 17 12  7 2   |     2  7 12 17 22
   *       21 16 11  6 1   |     1  6 11 16 21
   *                       |
   * ----------------------o---------------------------> x
   *                       |
   *       21 16 11  6 1   |     1  6 11 16 21
   *       22 17 12  7 2   |     2  7 12 17 22
   *       23 18 13  8 3   |     3  8 13 18 23
   *       24 19 14  9 4   |     4  9 14 19 24
   *       25 20 15 10 5   |     5 10 15 20 25
   *  (Q3)                                       (Q4)
   * \endverbatim
   *
   * @return crystal number from 1 to 25
   */
  int ic() const;

  /** Gets the quadrant of the DetId.
   * Quadrant number definition, x and y in std CMS coordinates, for EE+:
   *
   * \verbatim
   *                 A y
   *                 |
   *          Q2     |    Q1
   *                 |
   *       ----------o---------> x
   *                 |
   *          Q3     |    Q4
   *                 |
   * \endverbatim
   *
   * @return quadrant number
   */
  int iquadrant() const;

  /** Checks if crystal is in EE+
   * @return true for EE+, false for EE-
   */
  bool positiveZ() const { return id_ & 0x4000; }

  int iPhiOuterRing() const;  // 1-360 else==0 if not on outer ring!

  static EEDetId idOuterRing(int iPhi, int zEnd);

  /** Gets a compact index for arrays
   * @return compact index from 0 to kSizeForDenseIndexing-1
   */
  int hashedIndex() const {
    const uint32_t jx(ix());
    const uint32_t jd(2 * (iy() - 1) + (jx - 1) / 50);
    return ((positiveZ() ? kEEhalf : 0) + kdi[jd] + jx - kxf[jd]);
  }

  /** Same as hashedIndex()
   * @return compact index from 0 to kSizeForDenseIndexing-1
   */
  uint32_t denseIndex() const { return hashedIndex(); }

  /** returns a new EEDetId offset by nrStepsX and nrStepsY (can be negative),
   * returns EEDetId(0) if invalid */
  EEDetId offsetBy(int nrStepsX, int nrStepsY) const;

  /** returns a new EEDetId swapped (same iX, iY) to the other endcap, 
       * returns EEDetId(0) if invalid (shouldnt happen) */
  EEDetId switchZSide() const;

  /** following are static member functions of the above two functions
   *  which take and return a DetId, returns DetId(0) if invalid 
   */
  static DetId offsetBy(const DetId startId, int nrStepsX, int nrStepsY);
  static DetId switchZSide(const DetId startId);

  /** Checks validity of a dense/hashed index
   * @param din dense/hashed index as returned by hashedIndex() or denseIndex()
   * method
   * @return true if index is valid, false otherwise
   */
  static bool validDenseIndex(uint32_t din) { return validHashIndex(din); }

  /** Converts a hashed/dense index as defined in hashedIndex() and denseIndex()
   * methods to a det id.
   * @param din hashed/dense index
   * @return det id
   */
  static EEDetId detIdFromDenseIndex(uint32_t din) { return unhashIndex(din); }

  static bool isNextToBoundary(EEDetId id);

  static bool isNextToDBoundary(EEDetId id);

  static bool isNextToRingBoundary(EEDetId id);

  /** Gets a DetId from a compact index for arrays. Converse of hashedIndex() method.
   * @param hi dense/hashed index
   * @return det id
   */
  static EEDetId unhashIndex(int hi);

  /** Checks if a hashed/dense index is valid
   * @see hashedIndex(), denseIndex()
   * @param i hashed/dense index
   * @return true if the index is valid, false otherwise
   */
  static bool validHashIndex(int i) { return (i < kSizeForDenseIndexing); }

  /** Checks validity of a crystal (x,y.z) index triplet.
   * @param crystal_ix crystal x-index
   * @param crystal_iy crystal y-index
   * @param iz crystal z-index
   * @see EEDetId(int, int, int, int) for index definition
   * @return true if valid, false otherwise
   */
  static bool validDetId(int crystal_ix, int crystal_iy, int iz) {
    return crystal_ix >= IX_MIN && crystal_ix <= IX_MAX && crystal_iy >= IY_MIN && crystal_iy <= IY_MAX &&
           std::abs(iz) == 1 && (fastValidDetId(crystal_ix, crystal_iy) || slowValidDetId(crystal_ix, crystal_iy));
  }
  static bool slowValidDetId(int crystal_ix, int crystal_iy);

  /**  check if ix and iy is in a "ring" inscribed in EE
   *   if is inside is valid for sure
   *   if not the slow version shall be called
   */
  static bool fastValidDetId(int crystal_ix, int crystal_iy) {
    float x = crystal_ix;
    float y = crystal_iy;
    float r = (x - 50.5f) * (x - 50.5f) + (y - 50.5f) * (y - 50.5f);
    return r > 12.f * 12.f && r < 48.f * 48.f;
  }

  /** Returns the distance along x-axis in crystal units between two EEDetId
   * @param a det id of first crystal
   * @param b det id of second crystal
   * @return distance
   */
  static int distanceX(const EEDetId& a, const EEDetId& b);

  /** Returns the distance along y-axis in crystal units between two EEDetId
   * @param a det id of first crystal
   * @param b det id of second crystal
   * @return distance
   */
  static int distanceY(const EEDetId& a, const EEDetId& b);

  /** Gives supercrystal index from endcap *supercrystal* x and y indexes.
   * @see isc() for the index definition
   * @param iscCol supercrystal column number: supecrystal x-index for EE+
   * @param iscRow: supecrystal y-index
   * @return supercystal index
   */
  static int isc(int iscCol,   // output is 1-316
                 int iscRow);  //

  /** Lower bound of EE crystal x-index
   */
  static const int IX_MIN = 1;

  /** Lower bound of EE crystal y-index
   */
  static const int IY_MIN = 1;

  /** Upper bound of EE crystal y-index
   */
  static const int IX_MAX = 100;

  /** Upper bound of EE crystal y-index
   */
  static const int IY_MAX = 100;

  /** Lower bound of supercystal index as defined in isc()
   */
  static const int ISC_MIN = 1;

  /** Lower bound of crystal index within a supercrystal
   */
  static const int ICR_MIN = 1;

  /** Upper bound of supercystal index defined in isc()
   * <p>Beware it differs from the number of supercrystals in one endcap,
   * which is 312, because the numbering is not dense.
   */
  static const int ISC_MAX = 316;

  /** Upper bound of crystal index within a supercrystal
   */
  static const int ICR_MAX = 25;

  /** Number of crystals per Dee
   */
  static constexpr int kEEhalf = 7324;
  /** Number of dense crystal indices, that is number of
     * crystals per endcap.
     */
  static constexpr int kSizeForDenseIndexing = 2 * kEEhalf;

  /*@{*/
  /** function modes for EEDetId(int, int, int, int) constructor
   */
  static const int XYMODE = 0;
  static const int SCCRYSTALMODE = 1;
  /*@}*/

private:
  bool isOuterRing() const;

  static bool isOuterRingXY(int ax, int ay);

  //Functions from B. Kennedy to retrieve ix and iy from SC and Crystal number

  static const int nCols = 10;
  static const int nCrys = 5; /* Number of crystals per row in SC */
  static const int QuadColLimits[nCols + 1];
  static const int iYoffset[nCols + 1];

  static const unsigned short kxf[2 * IY_MAX];
  static const unsigned short kdi[2 * IY_MAX];

  int ix(int iSC, int iCrys) const;
  int iy(int iSC, int iCrys) const;
  int ixQuadrantOne() const;
  int iyQuadrantOne() const;
};

std::ostream& operator<<(std::ostream& s, const EEDetId& id);

#endif