<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">
<div><br>
</div>
<div>Hello,</div>
<div><br>
</div>
<div>I think there is a small correction needed on ATLAS_2011_I944826 routine. </div>
<div><br>
</div>
<div>It applies charged final states projection for the particles in |\eta| < 2.5, however, search for the hits in MBTS rapidity region 2.09 < |\eta| < 3.84. see below.. In this case, trigger cut is limited to the 2.09<|\eta|<2.5.</div>
<div><br>
</div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><b>      ChargedFinalState  cfs(-2.5, 2.5, 100*MeV);</b></font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      addProjection(cfs, "CFS");</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><br>
</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      const ChargedFinalState& cfs = applyProjection<ChargedFinalState>(event, "CFS");</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><br>
</font></div>
<div style="font-size: 12px; ">
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      // ATLAS MBTS trigger requirement of at least one hit in either hemisphere</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      const ChargedFinalState& cfs = applyProjection<ChargedFinalState>(event, "CFS");</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      int n_mbts = 0;</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      foreach (const Particle& p, cfs.particles()) {</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">        const double eta = fabs(p.momentum().eta());</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><b>        if (inRange(eta, 2.09, 3.84)) n_mbts++;</b></font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      }</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><br>
</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><b>      if (n_mbts < 1) {</b></font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">        MSG_DEBUG("Failed trigger cut");</font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo"><b>        vetoEvent;</b></font></div>
<div style="font-size: 13px; "><font class="Apple-style-span" face="Menlo">      }</font></div>
</div>
<div><br>
</div>
<div>Cheers, </div>
<div>Sercan</div>
</body>
</html>