|
Gaudi Framework, version v21r7 |
| Home | Generated: 22 Jan 2010 |
#include <cstdlib>
#include <cstring>
#include <fstream>
#include "GaudiKernel/SvcFactory.h"
#include "GaudiKernel/ISvcLocator.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ParticleProperty.h"
#include "GaudiKernel/PhysicalConstants.h"
#include "GaudiKernel/IFileAccess.h"
#include "ParticlePropertySvc.h"

Go to the source code of this file.
Functions | |
| template<class MAP> | |
| void | _remove_ (MAP &m, const ParticleProperty *pp) |
| template<class MAP> | |
| void | _load_ (MAP &m, ParticlePropertySvc::Set &result) |
| load mapped values from maps into set | |
class ParticlePropertySvc Class Implement a ParticlePropertySvc
Definition in file ParticlePropertySvc.cpp.
| void @634::_load_ | ( | MAP & | m, | |
| ParticlePropertySvc::Set & | result | |||
| ) | [inline, static] |
| void @634::_remove_ | ( | MAP & | m, | |
| const ParticleProperty * | pp | |||
| ) | [inline, static] |
Definition at line 280 of file ParticlePropertySvc.cpp.
00281 { 00282 typename MAP::iterator i = m.begin() ; 00283 for ( ; m.end() != i ; ++i ) { if ( i->second == pp ) { break ; } } 00284 if ( m.end() != i ) { m.erase ( i ) ; } 00285 }