Go to the documentation of this file.00001 #include "L1TriggerConfig/DTTPGConfigProducers/src/DTConfigTester.h"
00002
00003 #include "FWCore/Framework/interface/EventSetup.h"
00004 #include "FWCore/Framework/interface/ESHandle.h"
00005
00006 #include "L1TriggerConfig/DTTPGConfig/interface/DTConfigManager.h"
00007 #include "L1TriggerConfig/DTTPGConfig/interface/DTConfigManagerRcd.h"
00008
00009 #include "DataFormats/MuonDetId/interface/DTChamberId.h"
00010 #include "DataFormats/MuonDetId/interface/DTBtiId.h"
00011 #include "DataFormats/MuonDetId/interface/DTTracoId.h"
00012 #include "DataFormats/MuonDetId/interface/DTSectCollId.h"
00013
00014 using std::cout;
00015 using std::endl;
00016
00017 DTConfigTester::DTConfigTester(const edm::ParameterSet& ps) {
00018
00019 cout << "DTConfigTester::DTConfigTester()" << endl;
00020
00021 my_wh = ps.getUntrackedParameter<int>("wheel");
00022 my_sec = ps.getUntrackedParameter<int>("sector");
00023 my_st = ps.getUntrackedParameter<int>("station");
00024 my_traco = ps.getUntrackedParameter<int>("traco");
00025 my_bti = ps.getUntrackedParameter<int>("bti");
00026 my_sl = ps.getUntrackedParameter<int>("sl");
00027 }
00028
00029 DTConfigTester::~DTConfigTester() {
00030
00031
00032
00033 }
00034
00035 void DTConfigTester::analyze(const edm::Event& e, const edm::EventSetup& es) {
00036
00037 cout << "DTConfigTester::analyze()" << endl;
00038 cout << "\tRun number :" << e.id().run() << endl;
00039 cout << "\tEvent number :" << e.id().event() << endl;
00040
00041 using namespace edm;
00042
00043 ESHandle< DTConfigManager > dtConfig ;
00044 es.get< DTConfigManagerRcd >().get( dtConfig ) ;
00045
00046 cout << "\tPrint configuration :" << endl;
00047
00048 DTBtiId btiid(my_wh,my_st,my_sec,my_sl,my_bti);
00049 DTTracoId tracoid(my_wh,my_st,my_sec,my_traco);
00050 DTChamberId chid(my_wh,my_st,my_sec);
00051 DTSectCollId scid(my_wh,my_sec);
00052
00053 dtConfig->getDTConfigBti(btiid)->print();
00054 dtConfig->getDTConfigTraco(tracoid)->print();
00055 dtConfig->getDTConfigTSTheta(chid)->print();
00056 dtConfig->getDTConfigTSPhi(chid)->print();
00057 dtConfig->getDTConfigTrigUnit(chid)->print();
00058
00059 if(dtConfig->lutFromDB())
00060 dtConfig->getDTConfigLUTs(chid)->print();
00061 else {
00062 cout << "*******************************************************************************" << endl;
00063 cout << "* DTTrigger configuration : LUT parameters from GEOMETRY *" << endl;
00064 cout << "*******************************************************************************" << endl;
00065 }
00066
00067 dtConfig->getDTConfigSectColl(scid)->print();
00068 dtConfig->getDTConfigPedestals()->print();
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177 return;
00178
00179 }