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
|
// -*- C++ -*-
//
// Package: L1TObjects
// Class : L1TriggerKey
//
// Implementation:
// <Notes on implementation>
//
// Original Author:
// Created: Mon Dec 15 21:03:24 CET 2008
// $Id$
//
// system include files
// user include files
#include "CondFormats/L1TObjects/interface/L1TriggerKey.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
const std::string L1TriggerKey::kNullKey = "NULL";
const std::string L1TriggerKey::kEmptyKey = "";
|