1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#ifndef CondFormats_L1TObjects_L1GtCastorTemplate_h
#define CondFormats_L1TObjects_L1GtCastorTemplate_h
/**
* \class L1GtCastorTemplate
*
*
* Description: L1 Global Trigger CASTOR template.
*
* Implementation:
* Instantiated L1GtCondition. CASTOR conditions sends a logical result only.
* No changes are possible at the L1 GT level. CASTOR conditions can be used
* in physics algorithms in combination with muon, calorimeter, energy sum
* and jet-counts conditions.
* It has zero objects.
*
* \author: Vasile Mihai Ghete - HEPHY Vienna
*
* $Date$
* $Revision$
*
*/
// system include files
#include "CondFormats/Serialization/interface/Serializable.h"
#include <string>
#include <iosfwd>
// user include files
// base class
#include "CondFormats/L1TObjects/interface/L1GtCondition.h"
// forward declarations
// class declaration
class L1GtCastorTemplate : public L1GtCondition {
public:
// constructor
L1GtCastorTemplate();
// constructor
L1GtCastorTemplate(const std::string&);
// constructor
L1GtCastorTemplate(const std::string&, const L1GtConditionType&);
// copy constructor
L1GtCastorTemplate(const L1GtCastorTemplate&);
// destructor
~L1GtCastorTemplate() override;
// assign operator
L1GtCastorTemplate& operator=(const L1GtCastorTemplate&);
public:
/// print the condition
void print(std::ostream& myCout) const override;
/// output stream operator
friend std::ostream& operator<<(std::ostream&, const L1GtCastorTemplate&);
private:
/// copy function for copy constructor and operator=
void copy(const L1GtCastorTemplate& cp);
COND_SERIALIZABLE;
};
#endif
|