/* ======================================================================== *\ ! ! * ! * 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): Nicola Galante 12/2004 ! Author(s): Thomas Bretz 12/2004 ! ! Copyright: MAGIC Software Development, 2004 ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MTriggerPattern // // A container to store the decoded trigger pattern. // // The idea is, that this container will never change the meaning of its // variables, while the trigger pattern itself could. // // If new 'features' are necessary the decoding (MTriggerPatternDecode) // must be changed to correctly decode the pattern into the existing // MTriggerPattern. If new information is decoded you may have to // add new variables to this container. Don't forget to increase the // class version number (ClassDef) and document your change HERE. // // For files before file version 5 the trigger pattern is set to 00000000. // ///////////////////////////////////////////////////////////////////////////// #include "MTriggerPattern.h" ClassImp(MTriggerPattern); using namespace std; // -------------------------------------------------------------------------- // // Default constructor // MTriggerPattern::MTriggerPattern(const char *name, const char *title) : fPrescaled(0), fUnprescaled(0) { fName = name ? name : "MTriggerPattern"; fTitle = title ? title : "Container for decoded trigger pattern"; }