1 |
dgele |
1.1 |
#ifndef PatAlgos_KinematicResolutionRcd_h
|
2 |
|
|
#define PatAlgos_KinematicResolutionRcd_h
|
3 |
|
|
// -*- C++ -*-
|
4 |
|
|
//
|
5 |
|
|
// Package: PatAlgos
|
6 |
|
|
// Class : KinematicResolutionRcd
|
7 |
|
|
//
|
8 |
|
|
/**\class KinematicResolutionRcd ParticleResolutionRcd.h PhysicsTools/PatAlgos/interface/ParticleResolutionRcd.h
|
9 |
|
|
|
10 |
|
|
Description: Interface for getting Kinematic Resolutions through EventSetup
|
11 |
|
|
|
12 |
|
|
*/
|
13 |
|
|
//
|
14 |
|
|
// Author:
|
15 |
|
|
// Created: Sun Jun 24 16:53:34 CEST 2007
|
16 |
|
|
// $Id: KinematicResolutionRcd.h,v 1.1.2.1 2009/04/30 09:11:45 gpetrucc Exp $
|
17 |
|
|
//
|
18 |
|
|
|
19 |
|
|
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
|
20 |
|
|
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
|
21 |
|
|
#include "MagneticField/Records/interface/IdealMagneticFieldRecord.h"
|
22 |
|
|
|
23 |
|
|
|
24 |
|
|
#include "boost/mpl/vector.hpp"
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
class KinematicResolutionRcd :
|
28 |
|
|
public edm::eventsetup::DependentRecordImplementation<
|
29 |
|
|
KinematicResolutionRcd,
|
30 |
|
|
boost::mpl::vector<IdealMagneticFieldRecord>
|
31 |
|
|
> {};
|
32 |
|
|
#endif
|