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