You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when calling the function _get_print_attrs in event.py there is an error with handling an HLT related object:
*** SystemError: none of the 2 overloaded methods succeeded. Full details: edm::HLTPathStatus& edm::HLTGlobalStatus::operator[](const unsigned int i) => could not convert argument 1 (Objects/longobject.c:426: bad argument to internal function) const edm::HLTPathStatus& edm::HLTGlobalStatus::operator[](const unsigned int i) => could not convert argument 1 (Objects/longobject.c:426: bad argument to internal function)
this is called twice in looper.py, here and here, and causes the loop to crash
for now i've just commented out the print out calling self.event.__str__ and self.event in looper.py
is there a fix for this?
The text was updated successfully, but these errors were encountered:
when calling the function
_get_print_attrs
in event.py there is an error with handling an HLT related object:*** SystemError: none of the 2 overloaded methods succeeded. Full details: edm::HLTPathStatus& edm::HLTGlobalStatus::operator[](const unsigned int i) => could not convert argument 1 (Objects/longobject.c:426: bad argument to internal function) const edm::HLTPathStatus& edm::HLTGlobalStatus::operator[](const unsigned int i) => could not convert argument 1 (Objects/longobject.c:426: bad argument to internal function)
this is called twice in looper.py, here and here, and causes the loop to crash
for now i've just commented out the print out calling
self.event.__str__
andself.event
in looper.pyis there a fix for this?
The text was updated successfully, but these errors were encountered: