CMS 3D CMS Logo

HGCSiliconDetIdToROC.cc
Go to the documentation of this file.
2 
4  const int rocMax(6), cellRows(4), cellColumn(2);
5  const int type[rocMax] = {0,0,1,1,2,2};
6  const int start1[rocMax][cellColumn] = {{3,2},{1,0},{1,2},{3,4},{7,6},{5,4}};
7  const int start2[rocMax] = {0,0,0,1,4,4};
8 
9  // key = ROC #; value = vector of trigger cell U.V
10  for (int roc=0; roc<rocMax; ++roc) {
11  std::vector<std::pair<int,int> > cells;
12  if (type[roc] == 1) {
13  for (int i1=0; i1<cellColumn; ++i1) {
14  int u = start1[roc][i1];
15  int v = start2[roc] + u/2;
16  for (int i2=0; i2<cellRows; ++i2) {
17  cells.emplace_back(u,v);
18  ++u;
19  }
20  }
21  } else if (type[roc] == 2) {
22  for (int i1=0; i1<cellColumn; ++i1) {
23  int v = start2[roc];
24  int u = start1[roc][i1];
25  for (int i2=0; i2<cellRows; ++i2) {
26  cells.emplace_back(u,v);
27  ++v;
28  }
29  }
30  } else {
31  for (int i1=0; i1<cellColumn; ++i1) {
32  int u = start2[roc];
33  int v = start1[roc][i1];
34  for (int i2=0; i2<cellRows; ++i2) {
35  cells.emplace_back(u,v);
36  ++u; ++v;
37  }
38  }
39  }
40  triggerIdFromROC_[roc+1] = cells;
41  }
42 
43  // key = trigger cell U,V; value = roc #
44  for (auto const & itr : triggerIdFromROC_) {
45  for (auto cell : itr.second)
46  triggerIdToROC_[cell] = itr.first;
47  }
48 }
49 
50 int HGCSiliconDetIdToROC::getROCNumber(int triggerCellU, int triggerCellV,
51  int type) const {
52  auto itr = triggerIdToROC_.find(std::make_pair(triggerCellU,triggerCellV));
53  int roc = ((itr == triggerIdToROC_.end()) ? -1 :
54  ((type == 0) ? itr->second : (1+itr->second)/2));
55  return roc;
56 }
57 
58 std::vector<std::pair<int,int> > HGCSiliconDetIdToROC::getTriggerId(int roc, int type) const {
59 
60  std::vector<std::pair<int,int> > list;
61  if (type == 0) {
62  auto itr = triggerIdFromROC_.find(roc);
63  return ((itr == triggerIdFromROC_.end()) ? list : itr->second);
64  } else {
65  for (int k=0; k<2; ++k) {
66  int rocx = 2*roc + k - 1;
67  auto itr = triggerIdFromROC_.find(rocx);
68  if (itr != triggerIdFromROC_.end()) {
69  for (auto cell : itr->second)
70  list.emplace_back(cell);
71  }
72  }
73  return list;
74  }
75 }
76 
78 
79  for (auto const & itr : triggerIdFromROC_) {
80  std::cout << "ROC " << itr.first << " with " << (itr.second).size()
81  << " trigger cells:";
82  for (auto cell : itr.second)
83  std::cout << " (" << cell.first << "," << cell.second << ")";
84  std::cout << std::endl;
85  }
86  for (auto const & itr : triggerIdToROC_)
87  std::cout << "Trigger cell (" << (itr.first).first << ","
88  << (itr.first).second << ") : ROC " << itr.second <<std::endl;
89 }
size
Write out results.
type
Definition: HCALResponse.h:21
std::vector< std::pair< int, int > > getTriggerId(int roc, int type) const
std::map< int, std::vector< std::pair< int, int > > > triggerIdFromROC_
int k[5][pyjets_maxn]
std::map< std::pair< int, int >, int > triggerIdToROC_
int getROCNumber(HGCalTriggerDetId const &id) const
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run