Skip to content

Commit 6fcf74e

Browse files
committed
bug fixes
1 parent 61e4f12 commit 6fcf74e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

framework/looper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def process(self, iEv ):
202202
self.iEvent = iEv
203203
for i,analyzer in enumerate(self.analyzers):
204204
if not analyzer.beginLoopCalled:
205-
analyzer.beginLoop()
205+
analyzer.beginLoop(self.setup)
206206
start = timeit.default_timer()
207207
ret = analyzer.process( self.event )
208208
if self.timeReport:

init.sh

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ export PYTHONPATH=$PWD/..:$PYTHONPATH
66
# set up executable directory
77
cd $HEPPY/bin
88
ln -sf ../scripts/*.py .
9-
ln -sf ../scripts/heppy .
109
chmod +x *
1110
cd .. > /dev/null
1211

0 commit comments

Comments
 (0)