BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/DecayChain/include/DecayChain/Function/SelectAll.h
Go to the documentation of this file.
1#ifndef DCHAIN_SELECTALL_H
2#define DCHAIN_SELECTALL_H
3// -*- C++ -*-
4//
5// Package: <DChain>
6// Module: SelectAll
7//
8/**\class SelectAll SelectAll.h DChain/SelectAll.h
9
10 Description: Returns 'true' for all candidates passed to it
11
12 Usage:
13 <usage>
14
15*/
16//
17// Author: Chris D Jones
18// Created: Sat Dec 24 12:36:16 EST 2005
19// $Id: SelectAll.h,v 1.1.1.1 2009/03/03 06:06:56 maqm Exp $
20//
21// Revision history
22//
23// $Log: SelectAll.h,v $
24// Revision 1.1.1.1 2009/03/03 06:06:56 maqm
25// first import of DecayChain
26//
27// Revision 1.1 2006/01/11 20:28:14 cdj
28// massive class renaming, addition of [] for selection and unit tests
29//
30
31// system include files
32
33// user include files
34
35// forward declarations
36
37namespace dchain {
38 template <class T> struct SelectAll {
39 bool operator()( const T& ) const { return true; }
40 };
41} // namespace dchain
42#endif /* DCHAIN_SELECTALL_H */