Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "CondTools/DT/interface/DTHVHandler.h"
00014
00015
00016
00017
00018 #include "CondFormats/DTObjects/interface/DTHVStatus.h"
00019 #include "DataFormats/MuonDetId/interface/DTWireId.h"
00020 #include "DataFormats/MuonDetId/interface/DTLayerId.h"
00021 #include "DataFormats/MuonDetId/interface/DTChamberId.h"
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 DTHVHandler::DTHVHandler():
00039 objectPtr ( 0 ) {
00040 }
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 DTHVHandler::DTHVHandler( const DTHVStatus* dbObject ):
00051 objectPtr( dbObject ) {
00052 }
00053
00054
00055
00056
00057
00058 DTHVHandler::~DTHVHandler() {
00059 }
00060
00061
00062
00063
00064
00065 int DTHVHandler::get( const DTWireId& id,
00066 int& flagA,
00067 int& flagC,
00068 int& flagS ) const {
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082 flagA = flagC = flagS = 0;
00083 if ( objectPtr == 0 ) return 999;
00084 int iCell = id.wire();
00085 int fCell;
00086 int lCell;
00087 int
00088 fCheck = objectPtr->get( id.wheel(),
00089 id.station(),
00090 id.sector(),
00091 id.superLayer(),
00092 id.layer(),
00093 0, fCell, lCell,
00094 flagA, flagC, flagS );
00095 if ( ( fCheck == 0 ) &&
00096 ( fCell <= iCell ) &&
00097 ( lCell >= iCell ) ) return 0;
00098 fCheck = objectPtr->get( id.wheel(),
00099 id.station(),
00100 id.sector(),
00101 id.superLayer(),
00102 id.layer(),
00103 1, fCell, lCell,
00104 flagA, flagC, flagS );
00105 if ( ( fCheck == 0 ) &&
00106 ( fCell <= iCell ) &&
00107 ( lCell >= iCell ) ) return 0;
00108 flagA = flagC = flagS = 0;
00109 return 1;
00110 }
00111
00112
00113 int DTHVHandler::offChannelsNumber() const {
00114 int offNum = 0;
00115 DTHVStatus::const_iterator iter = objectPtr->begin();
00116 DTHVStatus::const_iterator iend = objectPtr->end();
00117 while ( iter != iend ) {
00118 const std::pair<DTHVStatusId,DTHVStatusData>& entry = *iter++;
00119 DTHVStatusId hvId = entry.first;
00120 DTHVStatusData data = entry.second;
00121 if ( data.flagA || data.flagC || data.flagS )
00122 offNum += ( 1 + data.lCell - data.fCell );
00123 }
00124 return offNum;
00125 }
00126
00127
00128 int DTHVHandler::offChannelsNumber( const DTChamberId& id ) const {
00129 int offNum = 0;
00130 DTHVStatus::const_iterator iter = objectPtr->begin();
00131 DTHVStatus::const_iterator iend = objectPtr->end();
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146 while ( iter != iend ) {
00147 const std::pair<DTHVStatusId,DTHVStatusData>& entry = *iter++;
00148 DTHVStatusId hvId = entry.first;
00149 DTHVStatusData data = entry.second;
00150 if ( ( hvId. wheelId == id. wheel() ) &&
00151 ( hvId.stationId == id.station() ) &&
00152 ( hvId. sectorId == id. sector() ) &&
00153 ( data.flagA || data.flagC || data.flagS ) )
00154 offNum += ( 1 + data.lCell - data.fCell );
00155 }
00156 return offNum;
00157
00158 }
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198