CMS 3D CMS Logo

AlignPCLThresholdsReader.cc
Go to the documentation of this file.
1 #include <string>
2 #include <iostream>
3 #include <map>
11 
12 namespace edmtest {
14  public:
16  ~AlignPCLThresholdsReader() override;
17 
18  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
19 
20  private:
21  void analyze(const edm::Event& e, const edm::EventSetup& c) override;
22 
23  // ----------member data ---------------------------
24  const bool printdebug_;
26  };
27 
29  : printdebug_(p.getUntrackedParameter<bool>("printDebug", true)),
30  formatedOutput_(p.getUntrackedParameter<std::string>("outputFile", "")) {
31  edm::LogInfo("AlignPCLThresholdsReader") << "AlignPCLThresholdsReader" << std::endl;
32  }
33 
35  edm::LogInfo("AlignPCLThresholdsReader") << "~AlignPCLThresholdsReader " << std::endl;
36  }
37 
39  edm::LogInfo("AlignPCLThresholdsReader") << "### AlignPCLThresholdsReader::analyze ###" << std::endl;
40  edm::LogInfo("AlignPCLThresholdsReader") << " I AM IN RUN NUMBER " << e.id().run() << std::endl;
41  edm::LogInfo("AlignPCLThresholdsReader") << " ---EVENT NUMBER " << e.id().event() << std::endl;
42 
45 
47  //record not found
48  edm::LogInfo("AlignPCLThresholdsReader") << "Record \"AlignPCLThresholdsRcd"
49  << "\" does not exist " << std::endl;
50  }
51 
52  //this part gets the handle of the event source and the record (i.e. the Database)
53  edm::ESHandle<AlignPCLThresholds> thresholdHandle;
54  edm::LogInfo("AlignPCLThresholdsReader") << "got eshandle" << std::endl;
55 
56  context.get<AlignPCLThresholdsRcd>().get(thresholdHandle);
57  edm::LogInfo("AlignPCLThresholdsReader") << "got context" << std::endl;
58 
59  const AlignPCLThresholds* thresholds = thresholdHandle.product();
60  edm::LogInfo("AlignPCLThresholdsReader") << "got AlignPCLThresholds* " << std::endl;
61  edm::LogInfo("AlignPCLThresholdsReader") << "print pointer address : ";
62  edm::LogInfo("AlignPCLThresholdsReader") << thresholds << std::endl;
63 
64  edm::LogInfo("AlignPCLThresholdsReader") << "Size " << thresholds->size() << std::endl;
65  edm::LogInfo("AlignPCLThresholdsReader") << "Content of myThresholds " << std::endl;
66  // use built-in method in the CondFormat to print the content
67  if (printdebug_) {
68  thresholds->printAll();
69  }
70 
71  FILE* pFile = nullptr;
72  if (!formatedOutput_.empty())
73  pFile = fopen(formatedOutput_.c_str(), "w");
74  if (pFile) {
75  fprintf(pFile, "AlignPCLThresholds::printAll() \n");
76  fprintf(pFile,
77  " ======================================================================================================="
78  "============ \n");
79  fprintf(pFile, "N records cut: %i \n", thresholds->getNrecords());
80 
81  AlignPCLThresholds::threshold_map m_thresholds = thresholds->getThreshold_Map();
82 
83  for (auto it = m_thresholds.begin(); it != m_thresholds.end(); ++it) {
84  fprintf(pFile,
85  " ====================================================================================================="
86  "============== \n");
87  fprintf(pFile, "key : %s \n ", (it->first).c_str());
88  fprintf(pFile, "- Xcut : %8.3f um ", (it->second).getXcut());
89  fprintf(pFile, "| sigXcut : %8.3f ", (it->second).getSigXcut());
90  fprintf(pFile, "| maxMoveXcut : %8.3f um ", (it->second).getMaxMoveXcut());
91  fprintf(pFile, "| ErrorXcut : %8.3f um\n ", (it->second).getErrorXcut());
92 
93  fprintf(pFile, "- thetaXcut : %8.3f urad ", (it->second).getThetaXcut());
94  fprintf(pFile, "| sigThetaXcut : %8.3f ", (it->second).getSigThetaXcut());
95  fprintf(pFile, "| maxMoveThetaXcut : %8.3f urad ", (it->second).getMaxMoveThetaXcut());
96  fprintf(pFile, "| ErrorThetaXcut : %8.3f urad\n ", (it->second).getErrorThetaXcut());
97 
98  fprintf(pFile, "- Ycut : %8.3f um ", (it->second).getYcut());
99  fprintf(pFile, "| sigYcut : %8.3f ", (it->second).getSigXcut());
100  fprintf(pFile, "| maxMoveYcut : %8.3f um ", (it->second).getMaxMoveYcut());
101  fprintf(pFile, "| ErrorYcut : %8.3f um\n ", (it->second).getErrorYcut());
102 
103  fprintf(pFile, "- thetaYcut : %8.3f urad ", (it->second).getThetaYcut());
104  fprintf(pFile, "| sigThetaYcut : %8.3f ", (it->second).getSigThetaYcut());
105  fprintf(pFile, "| maxMoveThetaYcut : %8.3f urad ", (it->second).getMaxMoveThetaYcut());
106  fprintf(pFile, "| ErrorThetaYcut : %8.3f urad\n ", (it->second).getErrorThetaYcut());
107 
108  fprintf(pFile, "- Zcut : %8.3f um ", (it->second).getZcut());
109  fprintf(pFile, "| sigZcut : %8.3f ", (it->second).getSigZcut());
110  fprintf(pFile, "| maxMoveZcut : %8.3f um ", (it->second).getMaxMoveZcut());
111  fprintf(pFile, "| ErrorZcut : %8.3f um\n ", (it->second).getErrorZcut());
112 
113  fprintf(pFile, "- thetaZcut : %8.3f urad ", (it->second).getThetaZcut());
114  fprintf(pFile, "| sigThetaZcut : %8.3f ", (it->second).getSigThetaZcut());
115  fprintf(pFile, "| maxMoveThetaZcut : %8.3f urad ", (it->second).getMaxMoveThetaZcut());
116  fprintf(pFile, "| ErrorThetaZcut : %8.3f urad\n ", (it->second).getErrorThetaZcut());
117 
118  if ((it->second).hasExtraDOF()) {
119  for (unsigned int j = 0; j < (it->second).extraDOFSize(); j++) {
120  std::array<float, 4> extraDOFCuts = thresholds->getExtraDOFCutsForAlignable(it->first, j);
121  fprintf(pFile,
122  "Extra DOF: %i with label %s \n ",
123  j,
124  thresholds->getExtraDOFLabelForAlignable(it->first, j).c_str());
125  fprintf(pFile, "- cut : %8.3f ", extraDOFCuts.at(0));
126  fprintf(pFile, "| sigCut : %8.3f ", extraDOFCuts.at(1));
127  fprintf(pFile, "| maxMoveCut : %8.3f ", extraDOFCuts.at(2));
128  fprintf(pFile, "| maxErrorCut : %8.3f \n ", extraDOFCuts.at(3));
129  }
130  }
131  }
132  }
133  }
134 
137  desc.setComment("Reads payloads of type AlignPCLThresholds");
138  desc.addUntracked<bool>("printDebug", true);
139  desc.addUntracked<std::string>("outputFile", "");
140  descriptions.add("AlignPCLThresholdsReader", desc);
141  }
142 
144 } // namespace edmtest
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
edm::eventsetup::heterocontainer::HCTypeTag::findType
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:121
electrons_cff.bool
bool
Definition: electrons_cff.py:393
EDAnalyzer.h
particleFlowZeroSuppressionECAL_cff.thresholds
thresholds
Definition: particleFlowZeroSuppressionECAL_cff.py:31
ESHandle.h
edmtest
Definition: AlignPCLThresholdsReader.cc:12
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
AlignPCLThresholds
Definition: AlignPCLThresholds.h:11
AlignPCLThresholdsRcd
Definition: AlignPCLThresholdsRcd.h:23
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
edm::one::EDAnalyzer
Definition: EDAnalyzer.h:30
edm::eventsetup::EventSetupRecordKey
Definition: EventSetupRecordKey.h:30
MakerMacros.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:80
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
AlignPCLThresholdsRcd.h
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
edm::ESHandle
Definition: DTSurvey.h:22
edmtest::AlignPCLThresholdsReader::analyze
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Definition: AlignPCLThresholdsReader.cc:38
edm::eventsetup::EventSetupRecordKey::TypeTag
heterocontainer::HCTypeTag TypeTag
Definition: EventSetupRecordKey.h:32
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edmtest::AlignPCLThresholdsReader::~AlignPCLThresholdsReader
~AlignPCLThresholdsReader() override
Definition: AlignPCLThresholdsReader.cc:34
funct::true
true
Definition: Factorize.h:173
edm::ParameterSet
Definition: ParameterSet.h:47
AlignPCLThresholds.h
Event.h
edmtest::AlignPCLThresholdsReader
Definition: AlignPCLThresholdsReader.cc:13
edm::eventsetup::EventSetupRecordKey::type
const TypeTag & type() const
Definition: EventSetupRecordKey.h:40
edmtest::AlignPCLThresholdsReader::formatedOutput_
const std::string formatedOutput_
Definition: AlignPCLThresholdsReader.cc:25
edm::EventSetup
Definition: EventSetup.h:57
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
get
#define get
edmtest::AlignPCLThresholdsReader::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: AlignPCLThresholdsReader.cc:135
AlignPCLThresholds::threshold_map
std::map< std::string, AlignPCLThreshold > threshold_map
Definition: AlignPCLThresholds.h:13
edmtest::AlignPCLThresholdsReader::printdebug_
const bool printdebug_
Definition: AlignPCLThresholdsReader.cc:24
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
std
Definition: JetResolutionObject.h:76
EventSetup.h
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edmtest::AlignPCLThresholdsReader::AlignPCLThresholdsReader
AlignPCLThresholdsReader(edm::ParameterSet const &p)
Definition: AlignPCLThresholdsReader.cc:28
edm::Event
Definition: Event.h:73
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37