/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz, 12/2003 ! ! Copyright: MAGIC Software Development, 2000-2003 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MTFillMatrix // // Use this tool to fill eg trainings and test-matrices, while the matrix // to be filled can be a real matrix (MHMatrix) or a file (MWriteRootFile) // or both. // // First create a reference histogram (MH3). For more details see // MFEventSelector2 which is used to select events according to the // reference histogram. // // If no reference histogram is available the number of events are // randomly choosen from the sample with a probability which fits // the total destination number of events. // // Here is an example of how to choose 1000 events somehow distributed in // size from a file. // ----------------------------------------------------------------------- // // MH3 ref("MHillas.fSize"); // choose a predefined size distribution // // Now setup the distribution // // MHMatrix matrix1; // create matrix to fill // matrix.AddColumn("MHillas.fWidth"); // setup columns of your matrix // // MReadMarsFile read("myfile.root"); // Setup your 'reader' // read.DisableAutoScheme(); // make sure everything is read // // MTFillMatrix fill(&ref); // setup MTFillMatrix // fill.SetNumDestEvents1(1000); // setup number of events to select // fill.SetDestMatrix1(&matrix1); // setup destination matrix // if (!fill.Process()) // check if everything worked // return; // fill.WriteMatrix1("myoutput.root"); // write matrix to file // // // To get two matrices instead of one (splitted randomly) you can add // the following before calling Process(): // ------------------------------------------------------------------------ // // MHMatrix matrix2; // fill.SetNumDestEvents2(500); // setup number of events to select // fill.SetDestMatrix2(&matrix2); // setup destination matrix // [...] // fill.WriteMatrix2("myoutput2.root"); // // // To write both matrices into a single file use: // ---------------------------------------------- // // fill.WriteMatrices("myfile.root"); // ///////////////////////////////////////////////////////////////////////////// #include "MTFillMatrix.h" #include #include "MHMatrix.h" #include "MLog.h" #include "MLogManip.h" #include "MParList.h" #include "MTaskList.h" #include "MEvtLoop.h" #include "MRead.h" #include "MFillH.h" #include "MContinue.h" #include "MFilterList.h" #include "MFEventSelector.h" #include "MFEventSelector2.h" ClassImp(MTFillMatrix); using namespace std; // -------------------------------------------------------------------------- // // Print Size and contained columns. // Check whether the number of generated events is compatible with // the number of requested events. // Bool_t MTFillMatrix::CheckResult(MHMatrix *m, Int_t num) const { if (!m) return kTRUE; m->Print("SizeCols"); const Int_t generated = m->GetM().GetNrows(); if (TMath::Abs(generated-num) <= TMath::Sqrt(9.0*num)) return kTRUE; *fLog << warn << "WARNING - No. of generated events ("; *fLog << generated << ") incompatible with requested events ("; *fLog << num << ") for " << m->GetDescriptor() << endl; return kFALSE; } // -------------------------------------------------------------------------- // // Write the given MHMatrix with its name as default name to a // file fname. // Bool_t MTFillMatrix::WriteMatrix(MHMatrix *m, const TString &fname, Int_t i) const { if (!m) { *fLog << "ERROR - Unable to write matrix #" << i << " (=NULL)... ignored." << endl; return kFALSE; } if (fname.IsNull()) { *fLog << "ERROR - Unable to write matrix, file name empty." << endl; return kFALSE; } TFile file(fname, "RECREATE", m->GetTitle()); m->Write(); return kTRUE; } // -------------------------------------------------------------------------- // // Constructor. Takes an MH3 as argument. This MH3 is the reference // distribution to fill the matrix. More information can be found // at MFEventSelector2 which is used to select the events. // // If no MH3 *ref is given the events are randomly selected from the // total sample - this may result in samples which don't have exactly // the predefined size, but it is much faster. // MTFillMatrix::MTFillMatrix(const MH3 *ref) : fReference(0), fReader(0), fDestMatrix1(0), fDestMatrix2(0), fNumDestEvents1(0), fNumDestEvents2(0), fWriteFile1(0), fWriteFile2(0) { fName = "MFillMatrix"; fTitle = "Tool to fill MHMatrix from file"; if (ref) fReference = (MH3*)ref->Clone(); } MTFillMatrix::~MTFillMatrix() { if (fReference) delete fReference; } // -------------------------------------------------------------------------- // // Fill the matrix (FIXME: Flow diagram missing) // Bool_t MTFillMatrix::Process() { if (!fReader) { *fLog << err << "ERROR - No task to read data was given... abort." << endl; return kFALSE; } *fLog << inf; fLog->Separator(GetDescriptor()); *fLog << "Fill " << fDestMatrix1->GetDescriptor() << " with " << fNumDestEvents1 << endl; *fLog << "Fill " << fDestMatrix2->GetDescriptor() << " with " << fNumDestEvents2 << endl; *fLog << "Distribution choosen "; if (fReference && fReference->GetHist().GetEntries()>0) *fLog << "from " << fReference->GetDescriptor(); else *fLog << "randomly"; *fLog << endl; // // Create parameter list and task list, add tasklist to parlist // MParList plist; MTaskList tlist; plist.AddToList(&tlist); // // A selector to select a given number of events from a sample // // FIXME: Merge MFEventSelector and MFEventSelector2 MFilter *selector=0; if (fReference) { // Case of a reference/nominal distribution // The events must be read before selection MFEventSelector2 *sel = new MFEventSelector2(*fReference); sel->SetNumMax(fNumDestEvents1+fNumDestEvents2); sel->SetInverted(); selector = sel; } else { // Case of a random distribution // The events can be selected before reading MFEventSelector *sel = new MFEventSelector; sel->SetNumSelectEvts(fNumDestEvents1+fNumDestEvents2); fReader->SetSelector(sel); selector = sel; } // // Continue for all events which are not (SetInverted()) // selected by the 'selector' // MContinue cont(selector); // // Create a filter doing a random split // const Double_t prob = (Double_t)fNumDestEvents1/(fNumDestEvents1+fNumDestEvents2); MFEventSelector split; split.SetSelectionRatio(prob); // // Create the logical inverted filter for 'split' // MFilterList invsplit; invsplit.AddToList(&split); invsplit.SetInverted(); // // The two tasks filling the two matrices // MFillH fill1(fDestMatrix1); MFillH fill2(fDestMatrix2); fill1.SetFilter(&split); fill2.SetFilter(&invsplit); // entries in MTaskList tlist.AddToList(fReader); // Read events if (fReference) tlist.AddToList(&cont); // select a sample of events tlist.AddToList(&invsplit); // process invsplit (which implicitly processes split) if (fDestMatrix1 && fNumDestEvents1>0) tlist.AddToList(&fill1); // fill matrix 1 if (fDestMatrix2 && fNumDestEvents2>0) tlist.AddToList(&fill2); // fill matrix 2 if (fWriteFile1) { fWriteFile1->SetFilter(&split); tlist.AddToList(fWriteFile1); } if (fWriteFile2) { fWriteFile2->SetFilter(&invsplit); tlist.AddToList(fWriteFile2); } // // Execute the eventloop // MEvtLoop evtloop(fName); evtloop.SetParList(&plist); evtloop.SetDisplay(fDisplay); evtloop.SetLogStream(fLog); const Bool_t rc = evtloop.Eventloop(); // Print execution statistics of the tasklist if (rc) tlist.PrintStatistics(); delete selector; if (!rc) { *fLog << err << GetDescriptor() << ": Failed." << endl; return kFALSE; } // Check the result of filling... CheckResult(fDestMatrix1, fNumDestEvents1); CheckResult(fDestMatrix2, fNumDestEvents2); *fLog << inf << GetDescriptor() << ": Done." << endl; return kTRUE; } // -------------------------------------------------------------------------- // // Write both matrices to a file. Return kFALSE if writing one of them // failed or both have the same name. // Bool_t MTFillMatrix::WriteMatrices(const TString &fname) const { if (fDestMatrix1 && fDestMatrix2 && (TString)fDestMatrix1->GetName()==(TString)fDestMatrix2->GetName()) { *fLog << "ERROR - Cannot write matrices (both have the same name)... ignored." << endl; return kFALSE; } return WriteMatrix1(fname) && WriteMatrix2(fname); }