File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class DecayFinder : public SubsysReco
78
78
* for a pipi final state, basically inclusive decays are handled automatically. If you wish to study the f0
79
79
* decay, add it to your decay descriptor and it will automatically be removed from the "skip list"
80
80
*/
81
- void setDecayDescriptor (std::string decayDescriptor) { m_decayDescriptor = decayDescriptor; }
81
+ void setDecayDescriptor (const std::string & decayDescriptor) { m_decayDescriptor = decayDescriptor; }
82
82
/* *
83
83
* @param[in] trigger Set to true to allow further processing of events in which your decay appears, if your decay
84
84
* does not appear, all further processing of this event is skipped. This defaults to false so every event
@@ -102,11 +102,11 @@ class DecayFinder : public SubsysReco
102
102
* @param[in] name Change the default name of the DecayFinderContainer.
103
103
* @note This name will still have "_DecayMap" added to the end, this cannot be changed
104
104
*/
105
- void setNodeName (std::string name) { m_container_name = name; }
105
+ void setNodeName (const std::string & name) { m_container_name = name; }
106
106
107
107
private:
108
- PHHepMCGenEventMap *m_geneventmap = NULL ;
109
- PHHepMCGenEvent *m_genevt = NULL ;
108
+ PHHepMCGenEventMap *m_geneventmap = nullptr ;
109
+ PHHepMCGenEvent *m_genevt = nullptr ;
110
110
111
111
int m_counter = 0 ;
112
112
int m_nCandFail_pT = 0 ;
You can’t perform that action at this time.
0 commit comments