Difference between revisions of "BibTestLM"

From Planck Legacy Archive Wiki
Jump to: navigation, search
Line 2: Line 2:
 
  <nowiki>  ;    Determine a powerlaw colour correction for 100 GHz detectors.
 
  <nowiki>  ;    Determine a powerlaw colour correction for 100 GHz detectors.
 
  hfi_100_cc = hfi_color_correction(BP_INFO=hfi_bp, '100', hfibolo_100_cc, $
 
  hfi_100_cc = hfi_color_correction(BP_INFO=hfi_bp, '100', hfibolo_100_cc, $
</nowiki>
 
<tt>    /POWERLAW, ALPHA=2.0, ABP=hfi_avg, AVG_CC=AVG_100_cc)</tt><br />
 
<tt>help, hfibolo_100_cc, /struct    ;    Print info about the detector output.</tt><br />
 
<tt>    ;    Determine a modified blackbody colour correction for Beta = 1.8 and T = 18 K.</tt><br />
 
<tt>hfi_545_cc = hfi_color_correction(BP_INFO=hfi_bp, '545', hfibolo_545_cc, /MODBLACKBODY, $</tt><br />
 
<tt>    TBD = 18d, BETABD = 1.8d, ABP=hfi_avg, CH_CC=CH_545_CC, AVG_CC=AVG_545_CC)</tt><br />
 
<tt>    print, hfibolo_545_cc.BOLONAME</tt><br />
 
<tt>    print, hfibolo_545_cc.CC</tt>
 
* Note that 545-3 is set to <math>-10^9</math> as this detector is not included in flight data products due to excessive noise.
 
<tt>    ;    Try to use a user-input spectrum</tt><br />
 
<tt>nu = (hfi_avg[5].freq)    ;    in Hz</tt><br />
 
<tt>Inu = COS((hfi_avg[5].trans)) ;    some arb. profile</tt><br />
 
<tt>hfi_857_cc = hfi_color_correction(BP_INFO=hfi_bp, '857', nu, Inu, hfibolo_857_cc, $</tt><br />
 
<tt>    ABP=hfi_avg, CH_CC=CH_857_CC, AVG_CC=AVG_857_CC)</tt><br />
 
<tt>print, hfibolo_857_cc.BOLONAME</tt><br />
 
<tt>    print, hfibolo_857_cc.CC</tt>
 
  
  <tt>    ;    Try to use another user-input spectrum</tt><br />
+
/POWERLAW, ALPHA=2.0, ABP=hfi_avg, AVG_CC=AVG_100_cc)
  <tt>nu = (hfi_avg[5].freq)    ;    in Hz</tt><br />
+
  <tt>help, hfibolo_100_cc, /struct    ;   Print info about the detector output.
  <tt>Inu = LOG((hfi_avg[5].trans)) ;    some arb. profile</tt><br />
+
    ;    Determine a modified blackbody colour correction for Beta = 1.8 and T = 18 K.
  <tt>hfi_857_cc = hfi_color_correction(BP_INFO=hfi_bp, '857', nu, Inu, hfibolo_857_cc, $</tt><br />
+
hfi_545_cc = hfi_color_correction(BP_INFO=hfi_bp, '545', hfibolo_545_cc, /MODBLACKBODY, $
  <tt>    ABP=hfi_avg, CH_CC=CH_857_CC, AVG_CC=AVG_857_CC)</tt><br />
+
TBD = 18d, BETABD = 1.8d, ABP=hfi_avg, CH_CC=CH_545_CC, AVG_CC=AVG_545_CC)
  <tt>print, hfibolo_857_cc.BOLONAME</tt><br />
+
print, hfibolo_545_cc.BOLONAME
  <tt>    print, hfibolo_857_cc.CC</tt>
+
print, hfibolo_545_cc.CC </nowiki>
 +
* Note that 545-3 is set to <math>-10^9</math> as this detector is not included in flight data products due to excessive noise.
 +
<nowiki>;    Try to use a user-input spectrum
 +
nu = (hfi_avg[5].freq)    ;    in Hz
 +
Inu = COS((hfi_avg[5].trans)) ;    some arb. profile
 +
hfi_857_cc = hfi_color_correction(BP_INFO=hfi_bp, '857', nu, Inu, hfibolo_857_cc, $
 +
ABP=hfi_avg, CH_CC=CH_857_CC, AVG_CC=AVG_857_CC)
 +
print, hfibolo_857_cc.BOLONAME
 +
print, hfibolo_857_cc.CC
 +
 
 +
  ;    Try to use another user-input spectrum
 +
  nu = (hfi_avg[5].freq)    ;    in Hz
 +
  Inu = LOG((hfi_avg[5].trans)) ;    some arb. profile
 +
  hfi_857_cc = hfi_color_correction(BP_INFO=hfi_bp, '857', nu, Inu, hfibolo_857_cc, $
 +
  ABP=hfi_avg, CH_CC=CH_857_CC, AVG_CC=AVG_857_CC)
 +
  print, hfibolo_857_cc.BOLONAME
 +
  print, hfibolo_857_cc.CC</nowiki>
  
  

Revision as of 13:04, 30 January 2013

   ;    Determine a powerlaw colour correction for 100 GHz detectors.
 hfi_100_cc = hfi_color_correction(BP_INFO=hfi_bp, '100', hfibolo_100_cc, $

/POWERLAW, ALPHA=2.0, ABP=hfi_avg, AVG_CC=AVG_100_cc)
 <tt>help, hfibolo_100_cc, /struct    ;    Print info about the detector output.
    ;    Determine a modified blackbody colour correction for Beta = 1.8 and T = 18 K.
hfi_545_cc = hfi_color_correction(BP_INFO=hfi_bp, '545', hfibolo_545_cc, /MODBLACKBODY, $
 TBD = 18d, BETABD = 1.8d, ABP=hfi_avg, CH_CC=CH_545_CC, AVG_CC=AVG_545_CC)
 print, hfibolo_545_cc.BOLONAME
 print, hfibolo_545_cc.CC 
  • Note that 545-3 is set to [math]-10^9[/math] as this detector is not included in flight data products due to excessive noise.
;    Try to use a user-input spectrum
 nu = (hfi_avg[5].freq)    ;    in Hz
 Inu = COS((hfi_avg[5].trans)) ;    some arb. profile
 hfi_857_cc = hfi_color_correction(BP_INFO=hfi_bp, '857', nu, Inu, hfibolo_857_cc, $
 ABP=hfi_avg, CH_CC=CH_857_CC, AVG_CC=AVG_857_CC)
 print, hfibolo_857_cc.BOLONAME
 print, hfibolo_857_cc.CC

  ;    Try to use another user-input spectrum
 nu = (hfi_avg[5].freq)    ;    in Hz
 Inu = LOG((hfi_avg[5].trans)) ;    some arb. profile
 hfi_857_cc = hfi_color_correction(BP_INFO=hfi_bp, '857', nu, Inu, hfibolo_857_cc, $
 ABP=hfi_avg, CH_CC=CH_857_CC, AVG_CC=AVG_857_CC)
 print, hfibolo_857_cc.BOLONAME
 print, hfibolo_857_cc.CC


and we get a link here #dupac2005,#hanson2009 but it looks a bit odd.

<biblio force=false>

  1. References

</biblio>

To be defined / determined