Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wildcard imports from ROOT (they are forbidden now) #43974

Merged
merged 8 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Calibration/EcalAlCaRecoProducers/test/nPU_mc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import math
import ROOT
from ROOT import *
from ROOT import gSystem, TH1F
from DataFormats.FWLite import Events, Handle
from PhysicsTools.PythonAnalysis import *
#import print_options
Expand Down
2 changes: 1 addition & 1 deletion Calibration/EcalAlCaRecoProducers/test/reRecoValidation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import math
import ROOT
from ROOT import *
from ROOT import gSystem, TH2F, gStyle
from DataFormats.FWLite import Events, Handle
from PhysicsTools.PythonAnalysis import *
#import print_options
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import math
import ROOT
from ROOT import *
from ROOT import gSystem, TH2F
from DataFormats.FWLite import Events, Handle
from PhysicsTools.PythonAnalysis import *
#import print_options
Expand Down
1 change: 0 additions & 1 deletion CondCore/PopCon/test/fetchCronLogTail.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import os, sys, re
import string
import math
from ROOT import *
import cx_Oracle
import time

Expand Down
2 changes: 1 addition & 1 deletion DQM/SiStripMonitorClient/scripts/DeadROC_duringRun.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
import sys
import string
from ROOT import *
from ROOT import TFile
from array import array

def getFileInPath(rfile):
Expand Down
Loading