Skip to content

Commit 96f9582

Browse files
authored
Merge pull request #49141 from smuzaffar/rootmaster-cmath-fix
Adding missing cmath header which was cleaned up in root master
2 parents ecae8ef + 9b3c138 commit 96f9582

File tree

13 files changed

+13
-0
lines changed

13 files changed

+13
-0
lines changed

Alignment/OfflineValidation/interface/PVValidationHelpers.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef ALIGNMENT_OFFLINEVALIDATION_PVVALIDATIONHELPER_H
22
#define ALIGNMENT_OFFLINEVALIDATION_PVVALIDATIONHELPER_H
33

4+
#include <cmath>
45
#include <string>
56
#include <vector>
67
#include <map>

CalibTracker/SiStripCommon/plugins/ShallowClustersProducer.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include <cmath>
12
#include "FWCore/Framework/interface/Event.h"
23
#include "FWCore/Framework/interface/ESHandle.h"
34
#include "FWCore/ParameterSet/interface/ParameterSet.h"

Calibration/HcalCalibAlgos/plugins/RecAnalyzerHF.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// system include files
2+
#include <cmath>
23
#include <memory>
34
#include <string>
45
#include <iostream>

DQM/CTPPS/src/TotemT2Segmentation.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "DQM/CTPPS/interface/TotemT2Segmentation.h"
1212
#include "FWCore/Utilities/interface/Exception.h"
1313

14+
#include <cmath>
1415
#include "TH2D.h"
1516

1617
TotemT2Segmentation::TotemT2Segmentation(size_t nbinsx, size_t nbinsy) : nbinsx_(nbinsx), nbinsy_(nbinsy) {

EventFilter/Utilities/plugins/ExceptionGenerator.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include <iostream>
44
#include <typeinfo>
55
#include <map>
6+
#include <cmath>
67
#include <sstream>
78
#include <sys/time.h>
89

GeneratorInterface/LHEInterface/plugins/LHECOMWeightProducer.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <iostream>
22
#include <memory>
3+
#include <cmath>
34

45
#include "FWCore/Framework/interface/Frameworkfwd.h"
56
#include "FWCore/Framework/interface/one/EDProducer.h"

L1Trigger/GlobalTrigger/plugins/L1GTPrescaler.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <array>
22
#include <cassert>
3+
#include <cmath>
34
#include <memory>
45
#include <vector>
56

PhysicsTools/NanoAOD/plugins/GenWeightsTableProducer.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "boost/algorithm/string.hpp"
1616

1717
#include <array>
18+
#include <cmath>
1819
#include <memory>
1920

2021
#include <vector>

RecoEgamma/EgammaPhotonAlgos/src/EnergyUncertaintyPhotonSpecific.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "RecoEgamma/EgammaPhotonAlgos/interface/EnergyUncertaintyPhotonSpecific.h"
22

33
#include <iostream>
4+
#include <cmath>
45

56
EnergyUncertaintyPhotonSpecific::EnergyUncertaintyPhotonSpecific(const edm::ParameterSet& config) {}
67

RecoLocalCalo/HcalRecAlgos/test/HcalRecHitReflagger.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
// system include files
1818
#include <iostream>
19+
#include <cmath>
1920
#include <memory>
2021

2122
// user include files

0 commit comments

Comments
 (0)