ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DGele/PhysicsTools/PatAlgos/plugins/PATTrigMatchSelector.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_PATHLTMatchSelector_h
2     #define PhysicsTools_PatAlgos_PATHLTMatchSelector_h
3    
4    
5     // -*- C++ -*-
6     //
7     // Package: PatAlgos
8     // Class: PATTrigMatchSelector
9     //
10     /**
11     \class pat::PATTrigMatchSelector PATTrigMatchSelector.h "PhysicsTools/PatAlgos/plugins/PATTrigMatchSelector.h"
12     \brief Dummy class as counterpart to PATMatchSelector in order to use PATCandMatcher
13    
14     Dummy class.
15    
16     \author Volker Adler
17     \version $Id: PATTrigMatchSelector.h,v 1.2 2008/06/08 12:24:03 vadler Exp $
18     */
19     //
20     // $Id: PATTrigMatchSelector.h,v 1.2 2008/06/08 12:24:03 vadler Exp $
21     //
22    
23    
24     #include "FWCore/ParameterSet/interface/ParameterSet.h"
25    
26    
27     namespace pat {
28    
29     template<typename T1, typename T2>
30     class PATTrigMatchSelector {
31    
32     public:
33    
34     PATTrigMatchSelector(const edm::ParameterSet& cfg) { }
35    
36     bool operator()( const T1 & c, const T2 & hlt ) const { return true; }
37    
38     private:
39    
40     };
41    
42     }
43    
44    
45     #endif