Transient reduction pipeline: Difference between revisions

From CASA Guides
Jump to navigationJump to search
Line 77: Line 77:
       datacolumn='data',
       datacolumn='data',
       timebin='10s')
       timebin='10s')
</source>
6. Set flux density of amplitude calibrator.
  Need some heuristics here.
  Also could be an issue if the frequency setting is such that one should use a model image at a different band than one is observing, e.g., observing near the top of the C band where an X band model might be more appropriate.
<source lang="python">
for tstname in acal_std_name.keys():
    if acal_name in acal_std_name[tstname]:
        modimage=tstname
modimage=modimage + '_' + band + '.im'
setjy(vis=outmsname,field=sources['acal'],modimage=modimage)
</source>
7. Quick-n-dirty bandpass
<source lang="python">
Bcaltable=ASDM_name + '.B1'
bandpass(vis=outmsname,caltable=Bcaltable,
        field=sources['acal'],
        solint='inf',combine='scan',refant=refant,
        solnorm=T,
        bandtype='B',
        append=F)
</source>
8. amplitude and phase calibration
<source lang="python">
Gcaltable=ASDM_name + '.G1'
gaincal(vis=outmsname,caltable=Gcaltable,
        field=sources['acal'],
        solint='inf',refant=refant,
        minsnr=5,
        solnorm=F,
        gaintype='G',calmode='ap',
        append=F,
        gaintable=Bcaltable)
gaincal(vis=outmsname,caltable=Gcaltable,
        field=sources['pcal'],
        solint='inf',refant=refant,
        minsnr=5,
        solnorm=F,
        gaintype='G',calmode='ap',
        append=T,
        gaintable=Bcaltable)
</source>
9. Apply calibration.
<source lang="python">
fluxtable=ASDM_name + '.flux1'
fluxscale(vis=outmsname,caltable=Gcaltable,fluxtable=fluxtable,
          reference=sources['acal'],
          transfer=sources['pcal'],
          append=F)
applycal(vis=outmsname,
        field=sources['pcal'],
        gaintable=[Bcaltable, Gcaltable])
applycal(vis=outmsname,
        field=sources['target'],
        gaintable=[Bcaltable, Gcaltable])
</source>
10. Form target source measurement set.
<source lang="python">
vishead(vis=msname, mode='get',
        hdkey='field', hdindex=sources['target'])
target_name=vishead()
targetms=target_name + '.ms'
split(vis=outmsname,outputvis=targetms,
      datacolumn='corrected',
      field=sources['target'])
</source>
</source>

Revision as of 19:40, 11 May 2010


Transient Reduction Pipeline

2010 May 11

There are a class of observations for which only relatively simple data reduction steps are needed. One such example is that of transient observations, which are typically conducted in continuum mode and for which one is merely trying to determine a flux density of an essentially unresolved or only partially resolved source. This guide describes the steps in such a pipeline.

Warning: This guide was written at the time when the EVLA was still in its commissioning phase. As the instrument matures, specific steps taken here may need to be adjusted. Caveat emptor.

In order to process these data in a semi-automatic fashion, certain assumptions are made

  • Data stored as an ALMA Science Data Model (ASDM) file on disk.
  • Sources, listed in order of appearance, are structured as Option A or Option B
    • Option A: phase calibrator, target source, amplitude calibrator
    • Option B: amplitude calibrator, phase calibrator, target source

User Input

1. Obtain the name of the ASDM file, use it to construct the Measurement Set name.

# In CASA
ASDM_name=raw_input('ASDM file name:')
msname=ASDM_name+'.ms'

2. Determine the order in which sources appear in the observation.

# In CASA
obs_structure=raw_input('Structure of observations [A|B]:')
if obs_structure == 'A':
    sources = {'acal':2, 'pcal':0, 'target':1}
elif obs_structure == 'B':
    sources = {'acal':0, 'pcal':1, 'target':2}

Processing Steps

1. Read the data from the ASDM file converting to a Measurement Set with importevla. Apply basic flagging operations (zeros, shadowing) here.

importevla(asdm=ASDM_name, vis=msname,
           flagzero=True, flagpol=True, shadow=True)

2. Extract the amplitude calibrator name from the data, for later calibration.

vishead(vis=msname, mode='get',
        hdkey='field', hdindex=sources['acal'])
acal_name=vishead()

3. Flag first (dummy) scan.

flagdata(vis=msname,
         mode='manualflag',
         selectdata=T, scan='1')

4. Flag first 10 seconds of each scan.

flagdata(vis=msname,
         mode='quack',quackinterval=10,quackmode='beg',
         selectdata=F)


5. Compress data in time.

   (You've checked that time average smearing isn't an issue ...?)
outmsname=ASDM_name+'_split.ms'
split(vis=msname,outputvis=outmsname,
      datacolumn='data',
      timebin='10s')


6. Set flux density of amplitude calibrator.

  Need some heuristics here.
  Also could be an issue if the frequency setting is such that one should use a model image at a different band than one is observing, e.g., observing near the top of the C band where an X band model might be more appropriate.
for tstname in acal_std_name.keys():
    if acal_name in acal_std_name[tstname]:
        modimage=tstname
modimage=modimage + '_' + band + '.im'
setjy(vis=outmsname,field=sources['acal'],modimage=modimage)


7. Quick-n-dirty bandpass

Bcaltable=ASDM_name + '.B1'
bandpass(vis=outmsname,caltable=Bcaltable,
         field=sources['acal'],
         solint='inf',combine='scan',refant=refant,
         solnorm=T,
         bandtype='B',
         append=F)


8. amplitude and phase calibration

Gcaltable=ASDM_name + '.G1'
gaincal(vis=outmsname,caltable=Gcaltable,
        field=sources['acal'],
        solint='inf',refant=refant,
        minsnr=5,
        solnorm=F,
        gaintype='G',calmode='ap',
        append=F,
        gaintable=Bcaltable)

gaincal(vis=outmsname,caltable=Gcaltable,
        field=sources['pcal'],
        solint='inf',refant=refant,
        minsnr=5,
        solnorm=F,
        gaintype='G',calmode='ap',
        append=T,
        gaintable=Bcaltable)


9. Apply calibration.

fluxtable=ASDM_name + '.flux1'
fluxscale(vis=outmsname,caltable=Gcaltable,fluxtable=fluxtable,
          reference=sources['acal'],
          transfer=sources['pcal'],
          append=F)

applycal(vis=outmsname,
         field=sources['pcal'],
         gaintable=[Bcaltable, Gcaltable])

applycal(vis=outmsname,
         field=sources['target'],
         gaintable=[Bcaltable, Gcaltable])


10. Form target source measurement set.

vishead(vis=msname, mode='get',
        hdkey='field', hdindex=sources['target'])
target_name=vishead()

targetms=target_name + '.ms'
split(vis=outmsname,outputvis=targetms,
      datacolumn='corrected',
      field=sources['target'])