ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DGele/PhysicsTools/PatAlgos/plugins/PATTrigMatchSelector.h
Revision: 1.2
Committed: Tue Oct 20 17:42:58 2009 UTC (15 years, 6 months ago) by dgele
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +2 -2 lines
State: FILE REMOVED
Log Message:
remove

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 dgele 1.2 \version $Id: PATTrigMatchSelector.h,v 1.1 2009/10/20 17:15:14 dgele Exp $
18 dgele 1.1 */
19     //
20 dgele 1.2 // $Id: PATTrigMatchSelector.h,v 1.1 2009/10/20 17:15:14 dgele Exp $
21 dgele 1.1 //
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