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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
#include "Geometry/RPCGeometry/interface/RPCGeomServ.h"
#include "DataFormats/MuonDetId/interface/RPCDetId.h"
#include <sstream>
#include <iomanip>

RPCGeomServ::RPCGeomServ::RPCGeomServ(const RPCDetId& id)
    : _id(&id), _n(""), _sn(""), _cn(""), _t(-99), _z(true), _a(true) {}

RPCGeomServ::~RPCGeomServ(void) {}

std::string RPCGeomServ::name(void) {
  if (_n.empty()) {
    int station = _id->station();
    int region = _id->region();
    int roll = _id->roll();
    int ring = _id->ring();
    int layer = _id->layer();
    int sector = _id->sector();
    int subsector = _id->subsector();

    std::stringstream os;

    if (region == 0) {
      os << "W";
      os << std::setw(2) << std::setfill('+') << ring << std::setfill(' ') << "_";

      os << "RB" << station;
      if (station <= 2) {
        (layer == 1) ? os << "in" : os << "out";

      } else if (station > 2) {
        if (sector == 4 && station == 4) {
          if (subsector == 1) {
            os << "--";
          } else if (subsector == 2) {
            os << "-";
          } else if (subsector == 3) {
            os << "+";
          } else if (subsector == 4) {
            os << "++";
          }
        }

        if (station == 3) {
          if (subsector == 1)
            os << "-";
          else
            os << "+";
        } else if (station == 4 && sector != 9 && sector != 11 && sector != 4) {
          if (subsector == 1)
            os << "-";
          else
            os << "+";
        }
      }

      os << "_";
      os << "S" << std::setw(2) << std::setfill('0') << sector << std::setfill(' ');
      if (roll == 1)
        os << "_Backward";
      else if (roll == 3)
        os << "_Forward";
      else if (roll == 2)
        os << "_Middle";
    } else {
      os << "RE";

      os << std::setw(2) << std::setfill('+') << station * region << std::setfill(' ') << "_";

      os << "R" << ring;
      os << "_CH" << std::setw(2) << std::setfill('0') << this->segment();

      if (roll == 1)
        os << "_A";
      else if (roll == 2)
        os << "_B";
      else if (roll == 3)
        os << "_C";
      else if (roll == 4)
        os << "_D";
      else if (roll == 5)
        os << "_E";
    }
    _n = os.str();
  }
  return _n;
}

std::string RPCGeomServ::chambername() {
  if (_cn.empty()) {
    int station = _id->station();
    int region = _id->region();
    int ring = _id->ring();
    int layer = _id->layer();
    int sector = _id->sector();
    int subsector = _id->subsector();

    std::stringstream os;

    if (region == 0) {
      os << "W";

      os << std::setw(2) << std::setfill('+') << ring << std::setfill(' ') << "_";

      os << "RB" << station;
      if (station <= 2) {
        (layer == 1) ? os << "in" : os << "out";

      } else if (station > 2) {
        if (sector == 4 && station == 4) {
          if (subsector == 1) {
            os << "--";
          } else if (subsector == 2) {
            os << "-";
          } else if (subsector == 3) {
            os << "+";
          } else if (subsector == 4) {
            os << "++";
          }
        }

        if (station == 3) {
          if (subsector == 1)
            os << "-";
          else
            os << "+";
        } else if (station == 4 && sector != 9 && sector != 11 && sector != 4) {
          if (subsector == 1)
            os << "-";
          else
            os << "+";
        }
      }

      os << "_";
      os << "S" << std::setw(2) << std::setfill('0') << sector << std::setfill(' ');
    } else {
      os << "RE";

      os << std::setw(2) << std::setfill('+') << station * region << std::setfill(' ') << "_";

      os << "R" << ring;
      os << "_CH" << std::setw(2) << std::setfill('0') << this->segment();
    }
    _cn = os.str();
  }
  return _cn;
}

std::string RPCGeomServ::shortname(void) {
  if (_sn.empty()) {
    int station = _id->station();
    int region = _id->region();
    int roll = _id->roll();
    int ring = _id->ring();
    int layer = _id->layer();
    int sector = _id->sector();
    int subsector = _id->subsector();

    std::stringstream os;

    if (region == 0) {
      os << "RB" << station;
      if (station <= 2) {
        (layer == 1) ? os << "in" : os << "out";

      } else {
        if (sector == 4 && station == 4) {
          if (subsector == 1) {
            os << "--";
          } else if (subsector == 2) {
            os << ",-";
          } else if (subsector == 3) {
            os << "+";
          } else if (subsector == 4) {
            os << "++";
          }
        } else {
          if (subsector == 1)
            os << ",-";
          else
            os << "+";
        }
      }
      if (roll == 1)
        os << " B";
      else if (roll == 3)
        os << " F";
      else if (roll == 2)
        os << " M";
    } else {
      os << "Ri" << ring << " Su" << subsector;
    }
    _sn = os.str();
  }
  return _sn;
}

// returns a vector with number of channels for each chip in each FEB
std::vector<int> RPCGeomServ::channelInChip(void) {
  std::vector<int> chipCh(4, 8);  //Endcap

  if (_id->region() == 0) {  //Barrel
    chipCh.clear();

    int station = _id->station();

    if (station < 3 && _id->layer() == 1) {  // i.e. RB1in ||RB2in
      chipCh.emplace_back(7);
      chipCh.emplace_back(8);
    } else if (station == 1 || station == 3) {  //i.e. RB1out || RB3
      chipCh.emplace_back(7);
      chipCh.emplace_back(7);
    } else if (station == 2) {  // i.e. RB2out
      chipCh.emplace_back(6);
      chipCh.emplace_back(8);
    } else if (_id->sector() == 4 || _id->sector() == 10 || (_id->sector() == 8 && _id->subsector() != 1) ||
               (_id->sector() == 12 && _id->subsector() == 1)) {
      chipCh.emplace_back(6);  //i.e. Sector 4 &  10 RB4 and Sector 8 &12 RB4+
      chipCh.emplace_back(6);
    } else {
      chipCh.emplace_back(8);
      chipCh.emplace_back(8);
    }
  }

  return chipCh;
}

int RPCGeomServ::eta_partition() {
  if (_t < -90) {
    if (_id->region() == 0) {
      if (this->inverted()) {
        _t = 3 * (_id->ring()) + (3 - _id->roll()) - 1;
      } else {
        _t = 3 * (_id->ring()) + _id->roll() - 2;
      }
    } else {
      _t = _id->region() * (3 * (3 - _id->ring()) + _id->roll() + 7);
    }
  }
  return _t;
}

int RPCGeomServ::chambernr() {
  // Station1
  if (_id->station() == 1) {
    // in
    if (_id->layer() == 1) {
      if (_id->roll() == 1)
        _cnr = 1;
      else
        _cnr = 2;
    }
    //out
    else {
      if (_id->roll() == 1)
        _cnr = 3;
      else
        _cnr = 4;
    }
  }

  //Station 2
  if (_id->station() == 2) {
    //in
    if (_id->layer() == 1) {
      if (_id->roll() == 1)  //backward
        _cnr = 5;
      if (_id->roll() == 3)  //forward
        _cnr = 6;
      if (_id->roll() == 2)  //middle
        _cnr = 7;
    }
    //out
    else {
      if (_id->roll() == 2)

        _cnr = 7;

      if (_id->roll() == 1)
        _cnr = 8;
      if (_id->roll() == 3)
        _cnr = 9;
    }
  }

  //RB3- RB3+
  if (_id->station() == 3) {
    if (_id->subsector() == 1) {
      if (_id->roll() == 1)
        _cnr = 10;
      else
        _cnr = 11;
    } else {
      if (_id->roll() == 1)
        _cnr = 12;
      else
        _cnr = 13;
    }
  }

  //RB4
  if (_id->station() == 4) {
    if (_id->sector() == 4) {
      if (_id->subsector() == 2) {  //RB4-

        if (_id->roll() == 1)
          _cnr = 14;
        else
          _cnr = 15;
      }

      if (_id->subsector() == 3) {  //RB4+

        if (_id->roll() == 1)
          _cnr = 16;
        else
          _cnr = 17;
      }

      if (_id->subsector() == 1) {  //RB4--

        if (_id->roll() == 1)
          _cnr = 18;
        else
          _cnr = 19;
      }

      if (_id->subsector() == 4) {  //RB4++

        if (_id->roll() == 1)
          _cnr = 20;
        else
          _cnr = 21;
      }

    }

    else

    {
      if (_id->subsector() == 1) {
        if (_id->roll() == 1)
          _cnr = 14;
        else
          _cnr = 15;
      } else {
        if (_id->roll() == 1)
          _cnr = 16;
        else
          _cnr = 17;
      }
    }
  }

  // _cnr=10;
  return _cnr;
}

int RPCGeomServ::segment(void) {
  int nsub = 6;
  int station = _id->station();
  int ring = _id->ring();
  (ring == 1 && station > 1) ? nsub = 3 : nsub = 6;

  return (_id->subsector() + nsub * (_id->sector() - 1));
}

bool RPCGeomServ::inverted() {
  // return !(this->zpositive() && this->aclockwise());
  return !(this->zpositive());
}

bool RPCGeomServ::zpositive() {
  if (_id->region() == 0 && _t < -90) {
    if (_id->ring() < 0) {
      _z = false;
    }
    if (_id->ring() == 0) {
      if (_id->sector() == 1 || _id->sector() == 4 || _id->sector() == 5 || _id->sector() == 8 || _id->sector() == 9 ||
          _id->sector() == 12) {
        _z = false;
      }
    }
  }

  return _z;
}

bool RPCGeomServ::aclockwise() {
  if (_id->region() == 0 && _t < -90) {
    if (_id->ring() > 0) {
      if (_id->layer() == 2) {
        _a = false;
      }
    } else if (_id->ring() < 0) {
      if (_id->layer() == 1) {
        _a = false;
      }
    } else if (_id->ring() == 0) {
      if ((_id->sector() == 1 || _id->sector() == 4 || _id->sector() == 5 || _id->sector() == 8 || _id->sector() == 9 ||
           _id->sector() == 12) &&
          _id->layer() == 1)
        _a = false;
      else if ((_id->sector() == 2 || _id->sector() == 3 || _id->sector() == 6 || _id->sector() == 7 ||
                _id->sector() == 10 || _id->sector() == 11) &&
               _id->layer() == 2)
        _a = false;
    }
  }
  return _a;
}

RPCGeomServ::RPCGeomServ() : _id(nullptr), _n(""), _sn(""), _cn(""), _t(-99), _z(false), _a(false) {}