Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:37

0001 #include "L1Trigger/RegionalCaloTrigger/interface/L1RCTORCAMap.h"
0002 #include <vector>
0003 using std::vector;
0004 #include <iostream>
0005 using std::cout;
0006 using std::endl;
0007 int main(){
0008   L1RCTORCAMap themap;
0009   for(int i = 0; i<72; i++){
0010     for(int j = 0; j<56; j++){
0011       std::vector<int> vec = themap.orcamap(j,i);
0012       std::cout << "phi " << i << " eta " <<  j << " goes to ";
0013       for(int k = 0; k < 3; k++)
0014     cout << vec.at(k) << " ";
0015       std::cout << std::endl;
0016     }
0017   }
0018 }