CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
CTPPSTrackDistributionPlotter Class Reference
Inheritance diagram for CTPPSTrackDistributionPlotter:
edm::one::EDAnalyzer<> edm::one::EDAnalyzerBase edm::EDConsumerBase

Classes

struct  ArmPlots
 
struct  RPPlots
 

Public Member Functions

 CTPPSTrackDistributionPlotter (const edm::ParameterSet &)
 
 ~CTPPSTrackDistributionPlotter () override
 
- Public Member Functions inherited from edm::one::EDAnalyzer<>
 EDAnalyzer ()=default
 
SerialTaskQueueglobalLuminosityBlocksQueue () final
 
SerialTaskQueueglobalRunsQueue () final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
bool wantsStreamLuminosityBlocks () const
 
bool wantsStreamRuns () const
 
 ~EDAnalyzerBase () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void endJob () override
 

Private Attributes

std::map< unsigned int, ArmPlotsarmPlots
 
std::string outputFile_
 
std::map< unsigned int, RPPlotsrpPlots
 
edm::EDGetTokenT< CTPPSLocalTrackLiteCollectiontracksToken_
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 32 of file CTPPSTrackDistributionPlotter.cc.

Constructor & Destructor Documentation

CTPPSTrackDistributionPlotter::CTPPSTrackDistributionPlotter ( const edm::ParameterSet iConfig)
explicit

Definition at line 104 of file CTPPSTrackDistributionPlotter.cc.

104  :
105  tracksToken_( consumes<CTPPSLocalTrackLiteCollection>( iConfig.getParameter<edm::InputTag>( "tagTracks" ) ) ),
106  outputFile_( iConfig.getParameter<std::string>("outputFile") )
107 {
108 }
T getParameter(std::string const &) const
edm::EDGetTokenT< CTPPSLocalTrackLiteCollection > tracksToken_
CTPPSTrackDistributionPlotter::~CTPPSTrackDistributionPlotter ( )
inlineoverride

Definition at line 37 of file CTPPSTrackDistributionPlotter.cc.

References analyze(), and endJob().

37 {}

Member Function Documentation

void CTPPSTrackDistributionPlotter::analyze ( const edm::Event iEvent,
const edm::EventSetup  
)
overrideprivate

Definition at line 112 of file CTPPSTrackDistributionPlotter.cc.

References CTPPSDetId::arm(), armPlots, edm::Event::getByToken(), rpPlots, l1t::tracks, and tracksToken_.

Referenced by ~CTPPSTrackDistributionPlotter().

113 {
114  // get input
116  iEvent.getByToken( tracksToken_, tracks );
117 
118  // process tracks
119  for (const auto& trk : *tracks) {
120  CTPPSDetId rpId(trk.getRPId());
121  unsigned int rpDecId = rpId.arm()*100 + rpId.station()*10 + rpId.rp();
122  rpPlots[rpDecId].fill(trk.getX(), trk.getY());
123  }
124 
125  for (const auto& t1 : *tracks) {
126  CTPPSDetId rpId1(t1.getRPId());
127 
128  for (const auto& t2 : *tracks) {
129  CTPPSDetId rpId2(t2.getRPId());
130 
131  if (rpId1.arm() != rpId2.arm())
132  continue;
133 
134  if (rpId1.station() == 0 && rpId2.station() == 2)
135  armPlots[rpId1.arm()].fill(t1.getX(), t1.getY(), t2.getX(), t2.getY());
136  }
137  }
138 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::map< unsigned int, ArmPlots > armPlots
edm::EDGetTokenT< CTPPSLocalTrackLiteCollection > tracksToken_
uint32_t arm() const
Definition: CTPPSDetId.h:51
std::map< unsigned int, RPPlots > rpPlots
Base class for CTPPS detector IDs.
Definition: CTPPSDetId.h:32
void CTPPSTrackDistributionPlotter::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 142 of file CTPPSTrackDistributionPlotter.cc.

References armPlots, DEFINE_FWK_MODULE, outputFile_, and rpPlots.

Referenced by ~CTPPSTrackDistributionPlotter().

143 {
144  auto f_out = std::make_unique<TFile>(outputFile_.c_str(), "recreate");
145 
146  for (const auto& it : rpPlots) {
147  gDirectory = f_out->mkdir(Form("RP %u", it.first));
148  it.second.write();
149  }
150 
151  for (const auto& it : armPlots) {
152  gDirectory = f_out->mkdir(Form("arm %u", it.first));
153  it.second.write();
154  }
155 }
std::map< unsigned int, ArmPlots > armPlots
std::map< unsigned int, RPPlots > rpPlots

Member Data Documentation

std::map<unsigned int, ArmPlots> CTPPSTrackDistributionPlotter::armPlots
private

Definition at line 99 of file CTPPSTrackDistributionPlotter.cc.

Referenced by analyze(), and endJob().

std::string CTPPSTrackDistributionPlotter::outputFile_
private

Definition at line 45 of file CTPPSTrackDistributionPlotter.cc.

Referenced by endJob().

std::map<unsigned int, RPPlots> CTPPSTrackDistributionPlotter::rpPlots
private

Definition at line 74 of file CTPPSTrackDistributionPlotter.cc.

Referenced by analyze(), and endJob().

edm::EDGetTokenT<CTPPSLocalTrackLiteCollection> CTPPSTrackDistributionPlotter::tracksToken_
private

Definition at line 43 of file CTPPSTrackDistributionPlotter.cc.

Referenced by analyze().