00001 /* 00002 * Copyright (C) 2008-2012, Daniel Kollar and Kevin Kroeninger. 00003 * All rights reserved. 00004 * 00005 * For the licensing terms see doc/COPYING. 00006 */ 00007 00008 // --------------------------------------------------------- 00009 00010 #include <TH1D.h> 00011 00012 #include "BCMTFSystematicVariation.h" 00013 00014 // --------------------------------------------------------- 00015 BCMTFSystematicVariation::BCMTFSystematicVariation(const char * channelname, const char * systematicname, int nprocesses) 00016 { 00017 fChannelName = channelname; 00018 fSystematicName = systematicname; 00019 for (int i = 0; i < nprocesses; ++i) { 00020 fHistogramUpContainer.push_back(0); 00021 fHistogramDownContainer.push_back(0); 00022 } 00023 } 00024 00025 // --------------------------------------------------------- 00026 BCMTFSystematicVariation::~BCMTFSystematicVariation() 00027 {} 00028 00029 // ---------------------------------------------------------