Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions offline/packages/CaloReco/CaloTowerBuilder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
#include <ffarawobjects/CaloPacket.h>
#include <ffarawobjects/CaloPacketContainer.h>

#include <cdbobjects/CDBTTree.h> // for CDBTTree

#include <ffamodules/CDBInterface.h>

#include <fun4all/Fun4AllReturnCodes.h>
#include <fun4all/SubsysReco.h> // for SubsysReco
#include <phool/recoConsts.h>

#include <phool/PHCompositeNode.h>
#include <phool/PHIODataNode.h> // for PHIODataNode
#include <phool/PHNode.h> // for PHNode
#include <phool/PHNodeIterator.h> // for PHNodeIterator
#include <phool/PHObject.h> // for PHObject
#include <phool/getClass.h>

#include <cdbobjects/CDBTTree.h> // for CDBTTree

#include <ffamodules/CDBInterface.h>
#include <phool/recoConsts.h>

#include <Event/Event.h>
#include <Event/EventTypes.h>
Expand Down Expand Up @@ -58,6 +58,7 @@ CaloTowerBuilder::~CaloTowerBuilder()
{
delete cdbttree;
delete cdbttree_tbt_zs;
delete cdbttree_sepd_map;
delete WaveformProcessing;
}

Expand Down
4 changes: 4 additions & 0 deletions offline/packages/mbd/MbdSig.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
#include <TFile.h>
#include <TGraphErrors.h>
#include <TRatioPlot.h>
#include <TH1.h>
#include <TH2.h>
#include <TMath.h>
#include <TPad.h>
#include <TSpectrum.h>
#include <TSpline.h>
#include <TTree.h>
#include <TVirtualFitter.h>

#include <algorithm>
#include <fstream>
Expand Down Expand Up @@ -140,6 +142,8 @@ MbdSig::~MbdSig()
{
_pileupfile->close();
}
// ROOT keeps the current fitter as a process-wide cache after Fit().
TVirtualFitter::SetFitter(nullptr, 0);
delete hRawPulse;
delete hSubPulse;
delete gRawPulse;
Expand Down
5 changes: 4 additions & 1 deletion offline/packages/mbd/MbdSig.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@

#include "MbdRunningStats.h"

#include <TH1.h>
#include <Rtypes.h>

#include <fstream>
#include <limits>
#include <vector>

class TTree;
class TF1;
class TGraphErrors;
class TH1;
class TH2;
class MbdCalib;

Expand Down