File indexing completed on 2024-04-06 12:02:10
0001 #include "CondFormats/EcalObjects/interface/EcalTPGTPMode.h"
0002 #include <iostream>
0003
0004 EcalTPGTPMode::EcalTPGTPMode() {}
0005
0006 EcalTPGTPMode::~EcalTPGTPMode() {}
0007
0008 void EcalTPGTPMode::print(std::ostream& out) const {
0009 out << ">>> Trigger primitive mode: " << std::endl;
0010 out << " enable EE odd filter " << EnableEEOddFilter << std::endl;
0011 out << " enable EB odd filter " << EnableEBOddFilter << std::endl;
0012 out << " enable EE odd peak finder " << EnableEEOddPeakFinder << std::endl;
0013 out << " enable EB odd peak finder " << EnableEBOddPeakFinder << std::endl;
0014 out << " disable EE even peak finder " << DisableEEEvenPeakFinder << std::endl;
0015 out << " disable EB even peak finder " << DisableEBEvenPeakFinder << std::endl;
0016 if (FenixEEStripOutput == 0)
0017 out << " EE strip formatter output: even filter " << std::endl;
0018 if (FenixEEStripOutput == 1)
0019 out << " EE strip formatter output: odd filter " << std::endl;
0020 if (FenixEEStripOutput == 2)
0021 out << " EE strip formatter output: larger of odd and even " << std::endl;
0022 if (FenixEEStripOutput == 3)
0023 out << " EE strip formatter output: odd + even " << std::endl;
0024 if (FenixEBStripOutput == 0)
0025 out << " EB strip formatter output: even filter " << std::endl;
0026 if (FenixEBStripOutput == 1)
0027 out << " EB strip formatter output: odd filter " << std::endl;
0028 if (FenixEBStripOutput == 2)
0029 out << " EB strip formatter output: larger of odd and even " << std::endl;
0030 if (FenixEBStripOutput == 3)
0031 out << " EB strip formatter output: odd + even " << std::endl;
0032 out << " Flag EE odd>even strip " << FenixEEStripInfobit2 << std::endl;
0033 out << " Flag EB odd>even strip " << FenixEBStripInfobit2 << std::endl;
0034 if (EBFenixTcpOutput == 0)
0035 out << " EB tcp formatter output: even filter " << std::endl;
0036 if (EBFenixTcpOutput == 1)
0037 out << " EB tcp formatter output: larger of odd and even " << std::endl;
0038 if (EBFenixTcpOutput == 2)
0039 out << " EB tcp formatter output: even + odd " << std::endl;
0040 out << " Flag EB odd>even TCP " << EBFenixTcpInfobit1 << std::endl;
0041 }