1 #ifndef MEtoEDMFormat_h
2 #define MEtoEDMFormat_h
21 #include <TProfile2D.h>
22 #include <TObjString.h>
24 #include <THashList.h>
34 #define METOEDMFORMAT_DEBUG 0
39 bool CheckBinLabels(
const TAxis* a1,
const TAxis * a2)
42 THashList *l1 = (
const_cast<TAxis*
>(a1))->GetLabels();
43 THashList *l2 = (
const_cast<TAxis*
>(a2))->GetLabels();
51 if (l1->GetSize() != l2->GetSize() ) {
54 for (
int i = 1;
i <= a1->GetNbins(); ++
i) {
55 TString label1 = a1->GetBinLabel(
i);
56 TString label2 = a2->GetBinLabel(
i);
57 if (label1 != label2) {
102 const size_t nObjects = newMEtoEDMObject.size();
108 if (nObjects != nOldObjects) {
109 std::cout <<
"WARNING MEtoEDM::mergeProducts(): the lists of histograms to be merged have different sizes: new=" << nObjects <<
", old=" << nOldObjects << std::endl;
112 for (
unsigned int i = 0;
i < nObjects; ++
i) {
123 if (j >= nOldObjects) {
125 #if METOEDMFORMAT_DEBUG
126 std::cout <<
"WARNING MEtoEDM::mergeProducts(): adding new histogram '" << name <<
"'" << std::endl;
129 }
else if (
MEtoEdmObject[j].
object.TestBit(TH1::kCanRebin) ==
true && newMEtoEDMObject[
i].
object.TestBit(TH1::kCanRebin) ==
true) {
131 list.Add((TObject*)&newMEtoEDMObject[
i].
object);
133 std::cout <<
"ERROR MEtoEDM::mergeProducts(): merge failed for '" << name <<
"'" << std::endl;
137 if (
MEtoEdmObject[j].
object.GetNbinsX() == newMEtoEDMObject[
i].
object.GetNbinsX() &&
138 MEtoEdmObject[j].
object.GetXaxis()->GetXmin() == newMEtoEDMObject[
i].
object.GetXaxis()->GetXmin() &&
139 MEtoEdmObject[j].
object.GetXaxis()->GetXmax() == newMEtoEDMObject[
i].
object.GetXaxis()->GetXmax() &&
140 MEtoEdmObject[j].
object.GetNbinsY() == newMEtoEDMObject[
i].
object.GetNbinsY() &&
141 MEtoEdmObject[j].
object.GetYaxis()->GetXmin() == newMEtoEDMObject[
i].
object.GetYaxis()->GetXmin() &&
142 MEtoEdmObject[j].
object.GetYaxis()->GetXmax() == newMEtoEDMObject[
i].
object.GetYaxis()->GetXmax() &&
143 MEtoEdmObject[j].
object.GetNbinsZ() == newMEtoEDMObject[
i].
object.GetNbinsZ() &&
144 MEtoEdmObject[j].
object.GetZaxis()->GetXmin() == newMEtoEDMObject[
i].
object.GetZaxis()->GetXmin() &&
145 MEtoEdmObject[j].
object.GetZaxis()->GetXmax() == newMEtoEDMObject[
i].
object.GetZaxis()->GetXmax() &&
146 CheckBinLabels((TAxis*)
MEtoEdmObject[j].
object.GetXaxis(),(TAxis*)newMEtoEDMObject[
i].
object.GetXaxis()) &&
147 CheckBinLabels((TAxis*)
MEtoEdmObject[j].
object.GetYaxis(),(TAxis*)newMEtoEDMObject[
i].
object.GetYaxis()) &&
148 CheckBinLabels((TAxis*)
MEtoEdmObject[j].
object.GetZaxis(),(TAxis*)newMEtoEDMObject[
i].
object.GetZaxis()) ) {
151 std::cout <<
"ERROR MEtoEDM::mergeProducts(): found histograms with different axis limits or different labels, '" << name <<
"' not merged" << std::endl;
152 #if METOEDMFORMAT_DEBUG
155 std::cout <<
MEtoEdmObject[
j].object.GetXaxis()->GetXmin() <<
" " << newMEtoEDMObject[
i].object.GetXaxis()->GetXmin() << std::endl;
156 std::cout <<
MEtoEdmObject[
j].object.GetXaxis()->GetXmax() <<
" " << newMEtoEDMObject[
i].object.GetXaxis()->GetXmax() << std::endl;
158 std::cout <<
MEtoEdmObject[
j].object.GetYaxis()->GetXmin() <<
" " << newMEtoEDMObject[
i].object.GetYaxis()->GetXmin() << std::endl;
159 std::cout <<
MEtoEdmObject[
j].object.GetYaxis()->GetXmax() <<
" " << newMEtoEDMObject[
i].object.GetYaxis()->GetXmax() << std::endl;
161 std::cout <<
MEtoEdmObject[
j].object.GetZaxis()->GetXmin() <<
" " << newMEtoEDMObject[
i].object.GetZaxis()->GetXmin() << std::endl;
162 std::cout <<
MEtoEdmObject[
j].object.GetZaxis()->GetXmax() <<
" " << newMEtoEDMObject[
i].object.GetZaxis()->GetXmax() << std::endl;
184 const size_t nObjects = newMEtoEDMObject.size();
190 if (nObjects != nOldObjects) {
191 std::cout <<
"WARNING MEtoEDM::mergeProducts(): the lists of histograms to be merged have different sizes: new=" << nObjects <<
", old=" << nOldObjects << std::endl;
194 for (
unsigned int i = 0;
i < nObjects; ++
i) {
205 if (j >= nOldObjects) {
207 #if METOEDMFORMAT_DEBUG
208 std::cout <<
"WARNING MEtoEDM::mergeProducts(): adding new histogram '" << name <<
"'" << std::endl;
221 const size_t nObjects = newMEtoEDMObject.size();
227 if (nObjects != nOldObjects) {
228 std::cout <<
"WARNING MEtoEDM::mergeProducts(): the lists of histograms to be merged have different sizes: new=" << nObjects <<
", old=" << nOldObjects << std::endl;
231 for (
unsigned int i = 0;
i < nObjects; ++
i) {
242 if (j >= nOldObjects) {
244 #if METOEDMFORMAT_DEBUG
245 std::cout <<
"WARNING MEtoEDM::mergeProducts(): adding new histogram '" << name <<
"'" << std::endl;
250 if (
MEtoEdmObject[j].name.find(
"EventInfo/processedEvents") != std::string::npos ) {
253 if (
MEtoEdmObject[j].name.find(
"EventInfo/iEvent") != std::string::npos ||
254 MEtoEdmObject[
j].name.find(
"EventInfo/iLumiSection") != std::string::npos) {
269 const size_t nObjects = newMEtoEDMObject.size();
275 if (nObjects != nOldObjects) {
276 std::cout <<
"WARNING MEtoEDM::mergeProducts(): the lists of histograms to be merged have different sizes: new=" << nObjects <<
", old=" << nOldObjects << std::endl;
279 for (
unsigned int i = 0;
i < nObjects; ++
i) {
290 if (j >= nOldObjects) {
292 #if METOEDMFORMAT_DEBUG
293 std::cout <<
"WARNING MEtoEDM::mergeProducts(): adding new histogram '" << name <<
"'" << std::endl;
298 if (
MEtoEdmObject[j].name.find(
"EventInfo/processedEvents") != std::string::npos ) {
301 if (
MEtoEdmObject[j].name.find(
"EventInfo/iEvent") != std::string::npos ||
302 MEtoEdmObject[
j].name.find(
"EventInfo/iLumiSection") != std::string::npos) {
317 const size_t nObjects = newMEtoEDMObject.size();
323 if (nObjects != nOldObjects) {
324 std::cout <<
"WARNING MEtoEDM::mergeProducts(): the lists of histograms to be merged have different sizes: new=" << nObjects <<
", old=" << nOldObjects << std::endl;
327 for (
unsigned int i = 0;
i < nObjects; ++
i) {
338 if (j >= nOldObjects) {
340 #if METOEDMFORMAT_DEBUG
341 std::cout <<
"WARNING MEtoEDM::mergeProducts(): adding new histogram '" << name <<
"'" << std::endl;
void swap(MEtoEDM< T > &iOther)
MEtoEDM(size_t reservedSize)
bool mergeProduct(const MEtoEDM< T > &newMEtoEDM)
Container::value_type value_type
const MEtoEdmObjectVector & getMEtoEdmObject() const
std::vector< MEtoEDMObject > MEtoEdmObjectVector
std::vector< uint32_t > TagList
void putMEtoEdmObject(const std::string &name, const TagList &tags, const T &object)
MEtoEdmObjectVector MEtoEdmObject
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run