ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DGele/PhysicsTools/PatAlgos/interface/KinematicResolutionProvider.h
Revision: 1.1.1.1 (vendor branch)
Committed: Tue Oct 20 17:15:14 2009 UTC (15 years, 6 months ago) by dgele
Content type: text/plain
Branch: ANA
CVS Tags: start
Changes since 1.1: +0 -0 lines
Log Message:
version CMSSW_2_2_10

File Contents

# User Rev Content
1 dgele 1.1 #ifndef PhysicsTools_PatAlgos_KinematicResolutionProvider_H
2     #define PhysicsTools_PatAlgos_KinematicResolutionProvider_H
3    
4     namespace reco { class Candidate; }
5     namespace pat { class CandKinResolution; }
6     namespace edm { class ParameterSet; class EventSetup; }
7     class KinematicResolutionProvider {
8     public:
9     virtual void setup(const edm::EventSetup &iSetup) const { }
10     virtual pat::CandKinResolution getResolution(const reco::Candidate &c) const = 0;
11     };
12    
13     #endif