File indexing completed on 2024-04-06 12:22:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include "L1TriggerConfig/DTTPGConfig/interface/DTConfigTSTheta.h"
0018
0019
0020
0021
0022 #include <iostream>
0023
0024
0025
0026
0027
0028
0029
0030
0031 DTConfigTSTheta::DTConfigTSTheta(const edm::ParameterSet& ps) { setDefaults(ps); }
0032
0033 DTConfigTSTheta::DTConfigTSTheta() : m_debug(false) {}
0034
0035
0036
0037
0038 DTConfigTSTheta::~DTConfigTSTheta() {}
0039
0040
0041
0042
0043
0044 void DTConfigTSTheta::setDefaults(const edm::ParameterSet& ps) {
0045
0046 m_debug = ps.getUntrackedParameter<bool>("Debug");
0047 }
0048
0049 void DTConfigTSTheta::print() const {
0050 std::cout << "******************************************************************************" << std::endl;
0051 std::cout << "* DTTrigger configuration : TSTheta chips *" << std::endl;
0052 std::cout << "******************************************************************************" << std::endl;
0053 std::cout << "* *" << std::endl;
0054 std::cout << "Debug flag : " << debug() << std::endl;
0055 std::cout << "******************************************************************************" << std::endl;
0056 }