#include <iostream>
#include "FWCore/Utilities/interface/Exception.h"
#include "CondFormats/CastorObjects/interface/CastorGainWidths.h"
#include "DataFormats/HcalDetId/interface/HcalGenericDetId.h"
Go to the source code of this file.
Functions | |
CastorGainWidths::Container::const_iterator | find (const CastorGainWidths::Container &container, unsigned long id) |
CastorGainWidths::Container::const_iterator @2036::find | ( | const CastorGainWidths::Container & | container, | |
unsigned long | id | |||
) | [static] |
Definition at line 23 of file CastorGainWidths.cc.
References HLT_VtxMuL3::result.
00023 { 00024 CastorGainWidths::Container::const_iterator result = container.begin (); 00025 for (; result != container.end (); result++) { 00026 if (result->rawId () == id) break; // found 00027 } 00028 return result; 00029 }