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
|
// -*- C++ -*-
//
// Package: RPCObjects
// Class : L1RPCConfig
//
// Implementation:
// <Notes on implementation>
//
// Original Author: Tomasz Fruboes
// Created: Tue Mar 20 12:04:44 CET 2007
// $Id: L1RPCConfig.cc,v 1.1 2007/04/02 10:44:15 fruboes Exp $
//
// system include files
// user include files
#include "CondFormats/L1TObjects/interface/L1RPCConfig.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
L1RPCConfig::L1RPCConfig() { m_ppt = -1; }
L1RPCConfig::~L1RPCConfig() {}
//void L1RPCConfig::setDataDir(const std::string &dir){
// m_dataDir = dir;
//}
|